Recursively remove .svn directories


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

Execute this to remove the .svn directory from the current directory and all sub directories


Copy this code and paste it in your HTML
  1. find . -regex '.*.svn' -exec rm -rf "{}" \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.