/ Published in: Bash
URL: http://johnjones.org/2007/07/linux_finding_text_inside_file.html
Expand |
Embed | Plain Text
find . -type f -exec grep -i "phrase to find" {} \; -print
You need to login to post a comment.
Risse on 01/31/11
1 person have marked this snippet as a favorite
URL: http://johnjones.org/2007/07/linux_finding_text_inside_file.html
find . -type f -exec grep -i "phrase to find" {} \; -print
You need to login to post a comment.