On 7/19/07, Mat Schaffer <schapht at gmail.com> wrote: > grep -l <search term> `find <starting directory> -name *.java` Simpler (and won't flake out on paths with spaces in): grep -r --include \*.java <search term> <starting directory> Robin