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
Remove All .svn Folders From Directory Recursively
find . -name .svn -print0 | xargs -0 rm -rf





Comments
Snippets Manager replied on Mon, 2007/08/27 - 6:52pm