I want to find all occurences of foo in a large file system maintained by SVN but I don't want to match anything contained in any .svn directory.
I get immediate matches when I do grep -l -e 'foo' * but when I try and exclude the svn directories with grep -l -e 'foo' --exclude-dir=".svn" the command just hangs.
What am I doing wrong?
