vote up 1 vote down star

How can you run the following in Grep?

grep "TODO" *
grep "TODO" */*
grep "TODO" */*/*
grep "TODO" */*/*/*
grep "TODO" */*/*/*/*

I run unsuccessfully

grep -r "TODO"

I get what I want by ack-grep by ack-grep TODO.

flag

Thank you for your answers! – Masi Aug 21 at 22:50

3 Answers

vote up 3 vote down check

If you want to grep recursively, use -R/-r and a path:

grep -R "TODO" .

So either you're missing the path (.) or I misunderstand your question.

link|flag
vote up 2 vote down

Let the shell do the work:

grep "TODO" **/*
link|flag
This work in Zsh, but not in Bash 3.2, Ubuntu. – Masi Aug 21 at 22:48
vote up 3 vote down

find . -exec grep -H TODO {} +

link|flag
+1 for introducing me to find's plus operator - thanks! – RichieHindle Aug 21 at 22:45
Beware that + is not standard, and not all find implementations support it. You can always use \;, but it will be less efficient. (More subprocesses will be spawned.) – William Pursell Aug 21 at 22:48
This seems to run lots of grep processes... might be slow. – liori Aug 21 at 22:50
1  
@liori: That's the point of the plus operator - see the manual: unixhelp.ed.ac.uk/CGI/man-cgi?find – RichieHindle Aug 21 at 22:53
Ah, yes, always forgetting that it differs from \;. – liori Aug 21 at 22:54
show 1 more comment

Your Answer

Get an OpenID
or

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