Recursively delete subversion directories using find and exec

Here’s a quick shell command that will recursively remove the “.svn” folders in your current path. This can be useful if you want to convert a checked out subversion repository into a normal file system.

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

Updated: