# 現在のディレクトリ以下にある「xyz*」ファイル内に「aiueo」が含まれているものを検索する
$ find . -name 'xyz*' -type f -print0 | xargs -0 grep aiueo
# 現在のディレクトリ以下にあるphpファイル内に「aiueo」が含まれているものを検索する
$ find . -name '*.php' -print0 | xargs -0 grep aiueo
# /var/www/htmlディレクトリ以下にあるファイル内に「aiueo」が含まれているものを検索する
$ find /var/www/html -type f -print0 | xargs -0 grep aiueo