The command below recursively finds all files that have the word foo in it from the current directory down
find . -name “*” -print0 | xargs -0 grep foo

The command below recursively finds all files that have the word foo in it from the current directory down
find . -name “*” -print0 | xargs -0 grep foo
