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:
|
1 |
rm -rf <code>find . -type d -name .svn</code> |