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:

Shell
1
rm -rf `find . -type d -name .svn`

Comment Form

Categories