by ankur on Thursday, 13 November 2008
How to find text in all files to a given directory
Find String in File
find . | xargs grep "TextToSearch"
Above command will search text in current directory
To search in other directories replace "." with directory path