http://twitter.com/n00tz/ | |
Blog | http://n00tz.net/blog |
Website | (not set) |
3
score
|
Find all files recursively with specified string in the filename and output any lines found containing a different string.$ find . -name *conf* -exec grep -Hni 'matching_text' {} \; > matching_text.conf.list |