・複数の拡張子を指定して検索
$ find . \( -name \*.html -o -name \*.css \) -print
./a.html
./b.html
./test/a.css
./test/a.html
./test/b.html


・ファイルの中身も確認

find dir/ -name *.cpp | xargs grep -n GetFunc

・+.oggファイルだけIドライブa/c/にコピーする
find MusicMakerProducerEdition/ -name "*.OGG" -exec cp {} i:/a/c \;


・検索する深さ指定し、シンボリックリンクも対象にする
find /sys/bus/pci/ -mindepth 2 -maxdepth -2 -follow driver

About