[darcs-users] Re: a bash tip for easily excluding the _darcs directory

Jamie Webb j at jmawebb.cjb.net
Wed Mar 9 14:55:46 UTC 2005


On Wed, Mar 09, 2005 at 02:42:16PM +0000, Jamie Webb wrote:
> I think that should be:
> 
> find . -path '*/_darcs/*' -prune -o -print0 | xargs -0 grep string

Or, shorter still:

find \! -path '*/_darcs/*' -print0 | xargs -0 grep string

-- Jamie Webb




More information about the darcs-users mailing list