Thursday, June 3, 2010

Find text within files on Linux



cd /your_directory
find . -type f -exec grep -l "string to find" {} \; -print


Easy!