Its very easy to delete all the .svn directories recursively by issuing the below command.
rm -rf `find . -type d -name .svn`
This will delete all the folders with name .svn inside the current working directory and recursively inside all other sub-directories too.