From 16912172c0c8970e3b2de5829aaea54daf9b03e4 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 17 Jan 2006 23:13:00 +0000 Subject: [PATCH] add support for excluding .bzr directories --- wcgrep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcgrep b/wcgrep index a68ad37..2f19476 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\}\)\(/\|$\)'} -prune -o \ +find $pathargs -regex ${WCGREP_IGNORE:-'.*~$\|.*/\(\.svn\|\{arch\}\|\.bzr\)\(/\|$\)'} -prune -o \ -type f -print0 | xargs -r0 ${WCGREP_GREP:-grep} ${WCGREP_GREPARGS:--HnI} \ $grepargs "$pattern" -- 2.30.2