Delete all .svn directories


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # try first with:
  2. find . -name ".svn" -type d | xargs -n1 echo
  3.  
  4. # then:
  5. find . -name ".svn" -type d | xargs -n1 rm -R

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.