Removing all .svn directories

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