I recently needed to clean up and remove all of the svn files in a directory structure. I found the answer here, a simple linux command line to recursively delete .svn folders:
find . -name “.svn” -print0 | xargs -0 rm -Rf
Java and software development related thoughts
I recently needed to clean up and remove all of the svn files in a directory structure. I found the answer here, a simple linux command line to recursively delete .svn folders:
find . -name “.svn” -print0 | xargs -0 rm -Rf
Previous post: Over typing -Dskip.junit=true
Next post: Groovy and Grails books