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"
Bash Script for Removing All .zvn folder/directories:-
cd htdocs/inderweb
find -name "\.svn" -exec rm -rf {} \;
rm -rf `find . -type d -name .svn`
#!/bin/sh
echo "recursively removing .svn folders from"
pwd
rm -rf `find . -type d -name .svn`