Removing all .svn directories
Submitted by benl on Fri, 04/24/2009 - 17:58
Related Terms :
HOWTO Recursively remove all svn directories from a directory... yay I love shell scripting. BE CAREFUL WITH THIS!!
find . -type d -name ".svn" -exec rm -rf {} \;