Remove .svn folders from a directory tree

May 30th, 2007 by ae

Grabbed 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 {} \;"

No Comments » Comments to this post

Leave a Reply