Showing posts with label unix commands. Show all posts
Showing posts with label unix commands. Show all posts

Thursday, April 09, 2009

Remove all .svn folders in a directory

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