From: Colin Watson Date: Tue, 15 Apr 2008 15:51:17 +0000 (+0000) Subject: exclude .git X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?p=bin.git;a=commitdiff_plain;h=4a3585d4814e3cdd72c5783a4baeff2598a06132 exclude .git --- diff --git a/wcgrep b/wcgrep index 2f19476..92311f3 100755 --- a/wcgrep +++ b/wcgrep @@ -54,6 +54,6 @@ for (( i=1; i <= $arg_count; i++ )); do fi done -find $pathargs -regex ${WCGREP_IGNORE:-'.*~$\|.*/\(\.svn\|\{arch\}\|\.bzr\)\(/\|$\)'} -prune -o \ +find $pathargs -regex ${WCGREP_IGNORE:-'.*~$\|.*/\(\.svn\|\{arch\}\|\.bzr\|\.git\)\(/\|$\)'} -prune -o \ -type f -print0 | xargs -r0 ${WCGREP_GREP:-grep} ${WCGREP_GREPARGS:--HnI} \ $grepargs "$pattern"