How to search for a string in a selection of files

//

//

find . -exec grep "www.athabasca" '{}' \; -print

This command will search in the current directory and all sub directories. All files that contain the string will have their path printed to standard output.

Source: http://www.athabascau.ca/html/depts/compserv/webunit/HOWTO/find.htm