memo

memo dayo.

検索したファイルに対して処理を行う

■検索したファイルを削除する

find . -name Thumbs.db -exec rm -f {} \;
find . -name ".DS_Store" -exec rm -f {} \;

■検索したファイルのパーミッションを変更する

find . -name "*.txt" -exec chmod 777 {} \;