On Jul 19, 2007, at 11:33 AM, Robin Houston wrote:
On 7/19/07, Mat Schaffer schapht@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>
Touché