Posted by
Nurul Ferdous on
Aug 15th, 2009 |
no comments
wanna delete all .svn folders recursively?
Open terminal
Go to the directory from where you want to delete all .svn folder
In my case:
$ cd /var/www/projects/craigmonkey/library
3. Now run this command:
<code>find -name "\.svn" -exec rm -rf {} \;</code>
you are done