background image
HomeRecent PostsDrupalSearchTagsRSSContactAboutAccount

Recursively deleting subversion folders using find and exec

Eric.London's picture

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. Just be careful, there is no going back!

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