Never been to DZone Snippets before?

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

About this user

Olle Jonsson http://blog.olle.ter.dk

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Remove all .svn folders in a directory tree

// You did a checkout when you really wanted to do an export.
// Now there are tons of .svn folders in your project, and you need them to go away.
// Shell scripting to the rescue.

// Credit: Zed Shaw, at the Mongrel mailing list.

   1  
   2  find . -name ".svn" -exec rm -rf {} \;
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS