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?
|
|
|
If you have GNU Grep, it should work like this:
If happen to be on a Unix System without GNU Grep, try the following:
|
|||||||||||||
|
|
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. |
|||||||||
|
|
For grep >=2.5.1a You can put this into your environment (e.g.
PS: thanks to Adrinan, there are extra quotes:
|
|||||
|
|
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 |
|||||
|
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. |
|||
|
Two greps will do the trick:
grep the_text_you_want_to_search_for * | grep -v .svn
|
|||||
|
|
I tried double grep'in on my huge code base and it took forever so I got this solution with the help of my co-worker Pruning is much faster as it stops find from processing those directories compared to 'grep -v' which processes everything and only excludes displaying results find . -name .svn -prune -o -type f -print0 | xargs -0 egrep 'YOUR STRING' You can also alias this command in your .bashrc as alias sgrep='find . -name .svn build -prune -o -type f -print0 | xargs -0 egrep ' Now simply use
|
|||
|
|
|
I think the --exclude option of recursion is what you are searching for. |
|||
|
|
|
For grep version 2.5.1 you can add multiple
|
|||
|
|