Simple
Sand
Samples
プログラミング言語サンプル集
TOPへ
Hello World!(各言語のTOP)
awk AWKコマンド
banner 花文字(バナー)
basename パスからファイル名抽出
cal カレンダー表示
cat ファイルの連結、内容表示
cd ディレクトリ変更
cksum CRCチェックサム
cp ファイルコピー
cut テキスト列抽出
date 日付と時間
dd バイナリ生成
diff ファイル比較
dirname パスからディレクトリ名取得
expand タブスペース変換
ed エディタ
find ファイル検索
gdb GNUデバッガ
git バージョン管理
global ソースコードTAGGING
grep 文字列検索
hd バイナリ16進ダンプ
head テキスト先頭抽出
hexdump バイナリダンプ
join フィールド一致行結合
ld リンクコマンド
ln シンボリックリンク
ls ファイルリスト
lv 文字コード変換
md5sum MD5メッセージダイジェスト
mkdir ディレクトリ作成
mv ファイル名(ディレクトリ)変更
netdiscover コンピュータ検索
nl 番号付け
od バイナリダンプ
paste ファイルを横に並べて表示
patch パッチを当てる
perl Perlコマンド
pr ページ付け、段組
printf 書式付き表示
pushd,popd ディレクトリ変更復帰
pwd カレントディレクトリ表示
rename ファイル名を一括変更
rev テキスト左右反転
rmdir 空のディレクトリ削除
scp リモートファイルコピー
sed ストリームエディタ
seq 数列生成
sort ソート
split ファイル分割
sleep 指定時間遅延
sum チェックサム
svn バージョン管理
tac テキスト上下反転
tail テキスト末尾抽出
tar 書庫操作、圧縮、解凍
touch タイムスタンプ更新
tr 文字一括置換
unexpand スペースタブ変換
uniq ソート済テキストの重複削除
vim vimエディタ
wc 単語数行数カウント
xargs 引数作成
zip,unzip ZIP圧縮解凍

説明のないとってもシンプルなサンプルプログラム集
COBOL awk C言語 D言語 GO言語 Lua Vim
bash Perl Gauche Clojure CLISP EmacsLisp VimScript
tcsh Ruby Groovy Java C# VBScript JavaScript
Io言語 Python Erlang Scala VB.NET Excel/VBA PHP
Tcl Haskell OCaml PowerShell Windows Unix/Linux

Linuxコマンド > find ファイル検索

1
2
find [-H] [-L] [-P] [-D debugopts] [-Olevel]
[path...] [expression]
~/tmp$ ls -l
total 8
drwxr-xr-x 3 user user 120 May  1 16:52 dir1
lrwxrwxrwx 1 user user   4 May  1 17:05 dir3 -> dir1
-rw-r--r-- 1 user user  46 Apr  4  2004 file1
-rw-r--r-- 1 user user  42 Mar  3  2003 file2

カレントディレクトリ配下のファイル、ディレクトリ全抽出

~/tmp$ find
.
./dir1
./dir1/dir2
./dir1/dir2/file21
./dir1/file11
./dir1/file12
./dir3
./file1
./file2

ファイルを抽出

~/tmp$ find -type f
./dir1/dir2/file21
./dir1/file11
./dir1/file12
./file1
./file2

ディレクトリを抽出

~/tmp$ find -type d
.
./dir1
./dir1/dir2

ディレクトリを抽出(シンボリックリンク含)

~/tmp$ find -L -type d
.
./dir1
./dir1/dir2
./dir3
./dir3/dir2

ファイルの詳細を一覧表示

~/tmp$ find -type f | xargs ls -l
-rw-r--r-- 1 user user    0 Apr  7 11:03 ./dir1/dir2/file21
-rw-r--r-- 1 user user 1024 Dec 12  2012 ./dir1/file11
-rw-r--r-- 1 user user  256 Feb  2  2002 ./dir1/file12
-rw-r--r-- 1 user user   46 Apr  4  2004 ./file1
-rw-r--r-- 1 user user   42 Mar  3  2003 ./file2

空のファイルを抽出

~/tmp$ find -empty
./dir1/dir2/file21

指定したファイルより新しいファイルを検索

~/tmp$ find -type f -newer file2
./dir1/dir2/file21
./dir1/file11
./file1
~/tmp$

指定したサイズのファイルを検索

~/tmp$ find -type f -size 1024c
./dir1/file11

指定したサイズより大きいファイルを検索

~/tmp$ find -type f -size +1023c
./dir1/file11
~/tmp$ find -type f -size +1024c
~/tmp$ 

指定したサイズより小さいファイルを検索

~/tmp$ find -type f -size -512c
./dir1/dir2/file21
./dir1/file12
./file1
./file2

パスを除いたファイル/ディレクトリ名のみ一覧表示

~/tmp$ find -printf "%f\n"
.
dir1
dir2
file21
file11
file12
dir3
file1
file2

検索結果を書式付き表示

~/tmp$ find -printf "%f\t%Am/%Ad %AH:%AM\t%p\n"
.       05/01 17:05 .
dir1    05/01 16:53 ./dir1
dir2    05/01 10:56 ./dir1/dir2
file21  04/20 20:20 ./dir1/dir2/file21
file11  12/12 12:00 ./dir1/file11
file12  02/02 02:00 ./dir1/file12
dir3    05/01 17:05 ./dir3
file1   04/04 10:20 ./file1
file2   03/03 12:20 ./file2

指定時間内(1分以内)にアクセスのあったファイルのみ表示

~/tmp$ touch file4
~/tmp$ find -type f -amin -1
./file4

指定時間内(2時間以内)に更新のあったファイルのみ表示

~/tmp$ find -type f -mtime -2
./file4

見つけたファイルを削除する

~/tmp$ find -type f -mtime -2 -exec rm {} \;
~/tmp$ ls file4
ls: cannot access file4: No such file or directory