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?

link|improve this question

69% accept rate
feedback

7 Answers

up vote 67 down vote accepted

If you have GNU Grep, it should work like this:

grep --exclude-dir=".svn"

If happen to be on a Unix System without GNU Grep, try the following:

grep -R "whatever you like" *|grep -v "\.svn/*" 
link|improve this answer
2  
On the Windows version of GNU Grep, I had to use --exclude-dir=\.svn – Rocket Sep 28 '10 at 16:00
9  
Only for gnu grep version >=2.5.1a – osgx Nov 8 '10 at 17:00
ha. I was just about to upvote but I had already. seems I was here before :) – Darragh Nov 30 '11 at 14:29
+1 for the second example, the first didn't work for me with GNU grep 2.6.3 using export GREP_OPTIONS="--exclude-dir=\".svn\" -nR --color" – jperelli Mar 19 at 15:56
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.

link|improve this answer
+1 for ack. I have a shell alias and use it by default. – Noufal Ibrahim Nov 8 '10 at 14:14
feedback

For grep >=2.5.1a

You can put this into your environment (e.g. .bashrc)

export GREP_OPTIONS='--exclude-dir=".svn"'
link|improve this answer
feedback

psychoschlumpf is correct, but it only works if you have the latest version of grep. Earlier versions do not have the --exclude-dir option. However, if you have a very large codebase, double-grep-ing can take forever. Drop this in your .bashrc for a portable .svn-less grep:

alias sgrep='find . -path "*/.svn" -prune -o -print0 | xargs -0 grep'

Now you can do this:

sgrep some_var

... and get expected results.

Of course, if you're an insane person like me who just has to use the same .bashrc everywhere, you could spend 4 hours writing an overcomplicated bash function to put there instead. Or, you could just wait for an insane person like me to post it online:

http://gist.github.com/573928

link|improve this answer
The method you list above using find and xargs does not work, at least on RHEL5 in my environment. I still get .svn-base listings. – nowarninglabel Dec 20 '10 at 19:29
for me it also doesn't work – Pavel K. Nov 23 '11 at 11:08
feedback
grep --exclude-dir=".svn"

works because the name ".svn" is rather unique. But this might fail on a more generalized name.

grep --exclude-dir="work"

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.

link|improve this answer
Only for gnu grep version >=2.5.1a – osgx Nov 8 '10 at 17:00
This should be a comment to the accepted answer, not an answer in itself. – Dave Dec 5 '11 at 18:39
@Dave: Thanks for the tip. You have just commented on a 2 year old comment. – karatedog Dec 5 '11 at 23:29
feedback

Two greps will do the trick:

  1. The first grep will get everything.
  2. The second grep will use output of first grep as input (via piping). By using the -v flag, grep will select the lines which DON'T match the search terms. Voila. You are left with all the ouputs from the first grep which do not contain .svn in the filepath.

    -v, --invert-match Invert the sense of matching, to select non-matching lines.

    grep the_text_you_want_to_search_for * | grep -v .svn
   
link|improve this answer
The second grep removes all color formatting. – Chandranshu Jan 8 at 7:08
feedback

I think the --exclude option of recursion is what you are searching for.

link|improve this answer
--exclude only matches file patterns, like *.java – rymo Mar 14 at 20:09
feedback

Your Answer

 
or
required, but never shown

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