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.
|
|
|||
|
|
|
If you want to grep recursively, use -R/-r and a path:
So either you're missing the path (.) or I misunderstand your question. |
||
|
|
|
|
Let the shell do the work:
|
||
|
|
|
find . -exec grep -H TODO {} + |
||||||||||||
|