Delete all .svn folders recursively (Ubuntu Linux)

wanna delete all .svn folders recursively?

  1. Open terminal
  2. 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 :)

line
footer
Powered by Wordpress | Designed by Elegant Themes