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 {} \;
This post is also available in: Greek
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 {} \;
This post is also available in: Greek