up vote 5 down vote favorite
share [g+] share [fb]

Right now I do this a lot:

find * | grep py$ | xargs grep foo

I recall there is some util that does this with way less typing, but which?

UPDATE: I prefer to use the Bash shell if possible.

link|improve this question

79% accept rate
1  
I like how every single answer is longer than the OP... – Matthew Flaschen Jun 22 '09 at 16:27
No longer true, thankfully. – Matthew Flaschen Jun 22 '09 at 16:31
feedback

8 Answers

up vote 14 down vote accepted

I love ack:

Which would you rather type?

$ grep pattern $(find . -type f | grep -v '\.svn')

$ ack pattern

link|improve this answer
ack --python foo is sweet! – kotlinski Jun 22 '09 at 16:36
ack is the bees knees. – seth Jul 9 '09 at 0:50
feedback

You may find your shell helps you. For instance, in zsh, you can do

grep foo **/*.py

provided the number of .py files doesn't exceed the maximum number of arguments allowed for a command (64k?). Note you can qualify the file globbing e.g.

grep foo **/*.py(mh-5)

which will give you everything modified in the last 5 hours.

link|improve this answer
not any better, almost the same # of keystrokes; – Jay Stevens Jun 22 '09 at 16:26
Hence the zsh globbing – Brian Agnew Jun 22 '09 at 16:27
feedback

Have you tried ack.

link|improve this answer
yeah, ack is a great replacement for grep (at least for programmers) – dfa Jun 22 '09 at 16:59
feedback

zsh has recursive globbing, so you can do

grep foo **/*.py

Look ma, no find :)

UPDATE: Oh, also if you do something a lot it doesn't hurt to alias or write a function for it of course

link|improve this answer
Given zsh's ability to do this, I barely have to mess with find's arcane syntax – Brian Agnew Jun 22 '09 at 16:26
feedback

It's called grep *wink* :-)

All py in current directory

grep -R foo *.py

All files in current and any sub-directory

grep -R foo .
link|improve this answer
1  
+1: -R is standard on most UNIX commands to also scan subdirectories recursively. – Powerlord Jun 22 '09 at 16:27
7  
Don't you need to quote or escape your globbing ? Otherwise the shell will expand this in the current directory ? – Brian Agnew Jun 22 '09 at 16:28
You are right about that – jitter Jun 22 '09 at 16:49
feedback
find . -name "*.py" -exec grep -H foo '{}' ';'
link|improve this answer
3  
Tip: end your exec expression with a '+' instead of ';', which will make find send all matching files to a single grep process instead of forking off a new one for each matching file. Much more efficient that way. – Lars Haugseth Jun 22 '09 at 17:13
feedback
grep -r --include='*.py' foo *
link|improve this answer
3  
That's an odd definition of the word "less" – skaffman Jun 22 '09 at 16:23
Yeah. Less chaining feels like less worry to me, but OP didn't ask for less worry, he asked for less typing. Edited to something actually shorter. Slightly. – chaos Jun 22 '09 at 16:28
feedback

I use something very much like your find/grep pair a lot, although with even more conditions -- excluding files in .svn directories, for example. I do this so much I just made scripts around these invocations, so I can call "src-grep ..." and have it do basically what you're doing here. (Then I added an optional extension for a number of context lines to pass to the grep -C flag, if supplied, and a separate version to grep the results for definition statements.)

This is more useful and faster than recursive grep for me.

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.