[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: BDB vs. FSFS

From: Nick Vargish <nav_at_bandersnatch.org>
Date: 2004-10-19 12:30:46 CEST

Boky wrote:
> 1. Install cygwin
> 2a. rm -rf $(find -name .svn)
> or, if that doesn't work (to many files), do
> 2b for f in `find -name .svn`; do rm $f; done

2b can still fail depending on how many files the find returns. This
should work for an arbitrarily large result set:

find . -name .svn -type d -exec rm -rf {} \;

For some (C) shells you might have to escape the curly braces as well
as the semicolon.

Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Oct 20 15:36:22 2004

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.