6 recusrive tree search for string in files

  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' {} \;