Remove all .svn folders in a directory tree
// Now there are tons of .svn folders in your project, and you need them to go away.
// Shell scripting to the rescue.
// Credit: Zed Shaw, at the Mongrel mailing list.
1 2 find . -name ".svn" -exec rm -rf {} \;