Removing .svn folders recursively
If you want to recursively delete all the Subversion folders from a working copy (for deployment or whatnot), this works well:
rm -rf `find . -type d -name .svn`
If you want to recursively delete all the Subversion folders from a working copy (for deployment or whatnot), this works well:
rm -rf `find . -type d -name .svn`