Delete All svn Folders


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

Could be used to delete pretty much anything, clearly.


Copy this code and paste it in your HTML
  1. find . -name ".svn" -type d | xargs -I {} rm -Rf {}

URL: http://www.codekoala.com/blog/2009/groovy-one-liner/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.