Remove Delete All .svn files and directories from Drupal INstallation

Want to bulk delete .svn folders recursively? Warning: Before you use this command make sure you have changed to the correct directory where you want to apply this. example: Lets say you want to delete all .svn files from drupal folder "inderweb"
cd htdocs/inderweb


find -name "\.svn" -exec rm -rf {} \;
rm -rf `find . -type d -name .svn`
Bash Script for Removing All .zvn folder/directories:-
#!/bin/sh
echo "recursively removing .svn folders from"
pwd
rm -rf `find . -type d -name .svn`