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
Try this one:
grep -L -e "foo\|bar" *