I need to search all cpp/h files in svn working copy for "foo", excluding svn's special folders completely. What is the exact command for GNU grep?
|
|
|||||||
|
|
|
I use ack for this purpose, it's like grep but automatically knows how to exclude source control directories (among other useful things). |
||
|
|
|
This is a RTFM. I typed 'man grep' and '/exclude' and got: --exclude=GLOB Skip files whose base name matches GLOB (using wildcard matching). A file-name glob can use *, ?, and [...] as wildcards, and \ to quote a wildcard or backslash character literally. --exclude-from=FILE Skip files whose base name matches any of the file-name globs read from FILE (using wildcard matching as described under --exclude). --exclude-dir=DIR Exclude directories matching the pattern DIR from recursive searches. |
||
|
|
|
grep -ir --exclude-dir=.svn foo * In the working directory will do. Omit the 'i' if you want the search to be case sensitive. If you want to check only .cpp and .h files use grep -ir --include={.cpp,.h} --exclude-dir=.svn foo * |
||||||
|
|
|
Going a little off-topic: If you have a working copy with a lot of untracked files (i.e. not version-controlled) and you only want to search source controlled files, you can do
|
||
|
|
|
|
I wrote this script which I've added to my .bashrc. It automatically excludes SVN directories from grep, find and locate. |
||
|
|
|
I use these bash aliases for grepping for content and files in svn trees... I find it faster and more pleasant to search from the commandline (and use
|
||
|
|
