recursively remove all svn directories
Submitted by barnettech on
Wiki Terms:
find . -name .svn -print0 | xargs -0 rm -rf
Here's the linkback for where I learned this item: http://codesnippets.joyent.com/posts/show/104
I post it on my site in case the page I read it on goes away, and it's easier for me to find the information again.
