I'm searching within Java files for some occurrence of a phrase:

find . -name '*.java' | xargs grep -l 'string'

How do I change this command to print to the shell all of the lines which contain a match?

link|improve this question

Consider using ack: betterthangrep.com – Dennis Williamson Apr 3 '10 at 19:01
feedback

4 Answers

up vote 2 down vote accepted
find . -name '*.java' | xargs grep 'string'

find . -name '*.java' | xargs grep -H 'string' # if you want filenames too
link|improve this answer
Or to handle spaces in filenames: find . -name '*.java' -print0 | xargs -0 grep 'string' – CoverosGene Jun 29 '10 at 15:22
feedback
grep -HR "string" *.java
link|improve this answer
feedback

Try using ack, available at betterthangrep.com

ack string --java
link|improve this answer
feedback

If your filenames contain space, ' or " you should look at GNU Parallel www.gnu.org/software/parallel/

find . -name '*.java' | parallel grep 'string'

Depending on your system this may run faster than the sequential grep as this can use multiple CPUs. Often, though, the speed of the disk will be the limiting factor.

Watch the intro video to GNU Parallel: http://www.youtube.com/watch?v=OpaiGYxkSuQ

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.