DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Strip .SVN Folders From A Subversion Working Copy
// Find and remove all .svn folders. (useful if you've lost the original repo and need to trash the .svn meta data.
find . -name ".svn" -exec rm -Rf {} \;





Comments
Yale Kaul replied on Sun, 2006/03/26 - 3:10am
rm -rf $(find . -name .svn)