Comments

Recursive Grep

Every now and then you need to know which files contain a string starting from the current directory and all files below. One way to do this on some Unix-like systems is to use something like...

find . -exec grep -l 'phrase to find in your files' {} \;

06/07/2010 10:54:24 AM by tom


Please log in to add a comment.