find grep ディレクトリ配下のファイルを文字列検索

今いるディレクトリ配下、全てのtxtファイルを文字列検索

# find . -type f -name "*.txt" | xargs grep "hoge"

homeディレクトリ配下、全てのファイルを文字列検索

# find ./home | xargs grep "hoge"