Re: Announcing RemoveSVN
Re: Announcing RemoveSVN
- Subject: Re: Announcing RemoveSVN
- From: Sandy Martel <email@hidden>
- Date: Mon, 5 Nov 2007 22:12:00 +1100
Le 07-11-05 à 20:51, Johan Claesson a écrit :
Once upon a time Sherm Pendley wrote:
You can do the same thing with a simple shell command, which works
not only in any version of Mac OS X, but in any other *nix as well:
find /path/to/folder -name '.svn' | xargs rm -r
Or more correct:
find /path/to/folder -name '*.svn' -type f -exec rm -r {} \;
Or even more correct:
find /path/to/folder -name '*.svn' -type d -exec rm -r {} \;
Sandy.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden