Recursively delete all .svn directories
Sometimes those .svn files just get in the way, especially when you want to ship your code off to someone else. Here’s a quick way to delete all of them from the command line. We’ll use the find command to locate all the .svn directories and then pass them to xargs, which will execute the “rm -rf” command for every line of output from the find results.
find . -name *.svn | xargs rm -rf
