Removing all .svn folders in your checked out subversion project

Aug 15 2009 Author: Brandon Orther

If your response to this command is that you should use "svn export" then 78% chance you're 98% homosexual:

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