Need to search a directories with lots of sub-directories for a string inside files:
I\'m using:
grep -c -r \"string here\" *
How can I
To output only file names with matches, use:
grep -r -l "your string here" .
It will output one line with the filename for each file which matches the expression searched for.