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 the below. this should work
grep -rL -P "(foo|bar)" .