Remove .svn folders from a directory tree
Wednesday, May 30th, 2007Grabbed this from irc - so very very handy.
Chuck this in your .bash_aliases file (if you have enabled it) and you will be able to recursively remove those pesky hidden svn folders from a directory tree with rmsvn:
alias rmsvn="find . -name '*.svn' -exec rm -rf {} \;"
