構文
find [option] [path…] [expression]
オプション
-depth ディレクトリ本体の前に,ディレクトリの内容を先に評価する
-follow シンボリック・リンクの参照先を検索する
-xdev 他のファイル・システムにあるディレクトリは探索しない
参考>
フォルダ配下の拡張子htmlのファイルをファイル詳細付きで検索する
$ find ~/ -name “*.html” -ls
444226 1 -rw-r–r– 1 hoge hoge 86 Nov 19 12:30 /home/hoge/index.html
ルートのpublic.html以下で拡張子がjpgでかつサイズが
100Kバイト以上のファイルを探し,結果をresultファイルに書き込む
$ find ~/public.html -name “*.jpg” -and -size +100k -fprint result
tempを含むファイルを探し,削除を行う
$ find ~/ -name “*temp*” -ok rm {} \;