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
Recursively Remove CVS Or Subversion Files From Folders
You could just swap CVS with .svn for subversion etc.
find -d . -name 'CVS' -exec rm -rf '{}' \; -print





Comments
Snippets Manager replied on Thu, 2010/01/28 - 5:09am
find . -name 'CVS' | xargs rm -r