ASi

find で grep

(for file in $(find [dir] -type f); do cat $file | grep "search word"; if test $? == 0 ;then echo found in $file; fi; done;)