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


You need to login to view comments.