Remove all .svn folders
We use the find command to find all folders named .svn and then using exec we remove them
find . -type d -name ".svn" -exec rm -rf {} \;
We use the find command to find all folders named .svn and then using exec we remove them
find . -type d -name ".svn" -exec rm -rf {} \;