http://www.sixnine.net/roadside/find.html

findにオプションを付ける事でいろいろな事が出来る

find ./ -mmin +29 -type f -exec mv {} ./dropbox/ \;

find . -ctime +1 -type f -exec mv {} /home/bk \;

こんな感じで特定の文字を含むメールを削除する
 find . -type f -exec grep "メールに含まれる文字列" {} ?; -print -exec rm -f {} ?;

文字列を検索せず、全てのメールを削除する
 find . -type f -exec rm -f {} ?;

文字列を検索して、ファイル名を表示する

find ./  -exec grep 検索内容 {} \; -print

Last-modified: 2012-03-12 (月) 17:06:02 (166d)