April 20, 2011 | In: how-to, snippet, Tips & Tricks
How to recursively delete .svn directories
Just move to the directory where you want to delete, recursively, the .svn directories and type the folowing line: [crayon-4f45cd7ae1346 lang="shell"] rm -rf `find . -type d -name .svn` [/crayon]