When I grep my Subversion working copy directory, the results include a lot of files from the .svn directories. Is it possible to recursively grep a directory, but exclude all results from .svn directories?
|
feedback
|
|
If you have GNU Grep, it should work like this:
If happen to be on a Unix System without GNU Grep, try the following:
| |||||||||||||
feedback
|
|
If you use ack (a 'better grep') it will handle this automatically (and do a lot of other clever things too!). It's well worth checking out. | |||
|
feedback
|
|
For grep >=2.5.1a You can put this into your environment (e.g.
| |||
|
feedback
|
|
psychoschlumpf is correct, but it only works if you have the latest version of
Now you can do this:
... and get expected results. Of course, if you're an insane person like me who just has to use the same | |||||
feedback
|
works because the name ".svn" is rather unique. But this might fail on a more generalized name.
is not bulletproof, if you have "/home/user/work" and "/home/user/stuff/work" it will skip both. It is not possible to define "/*/work/*" to restrict the exclusion to only the former folder name. As far as I could experiment, in GNU grep the simple --exclude won't exclude directories. | |||||||
feedback
|
|
Two greps will do the trick:
grep the_text_you_want_to_search_for * | grep -v .svn
| |||
|
feedback
|
|
I think the --exclude option of recursion is what you are searching for. | |||
|
feedback
|