GREP is a very handy little tool that will look inside files for things. I came across a need to recursively search all files in my current directory for a certain string. Grep did this beautifully. The command I used is:
grep -r “text string to search” .
That did the trick! Thanks to cyberciti.biz for the information.