How to search for a string in a selection of files (-exec grep ...). find . -exec grep "searchthisstring" '{}' \; -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.
This e-mail address is being protected from spambots. You need JavaScript enabled to view it.