To find all the files that contain \"foo\" in current folder, I use:
grep -r \"foo\" .
To find all the files that contain \"bar\" in curren
Recursively searches directories for all files that do no contains XYZ
find . -type f | xargs grep -L "XYZ"