Re: BDB vs. FSFS
From: Raye Raskin <rayer_at_pobox.com>
Date: 2004-10-19 19:56:39 CEST
----- Original Message -----
>> > $ find . -type d -exec rm -rf {} \;
I agree. As I recall, using -exec causes a new rm process to
Also, I would suggest the following:
find . -type d -name '.svn' > foo
take a look inside foo with your favorite editor...
cat foo | xargs rm -rf
It's just too easy to get burned with rm -rf.
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.