[next] [prev] [prev-tail] [tail] [up]
grep -H -r "string I am searching for" *
This should also work
grep -H -r 'string I am searching for' *
also this
find . -type f -exec grep -l 'string' {} \;
[next] [prev] [prev-tail] [front] [up]