Skip to content

Instantly share code, notes, and snippets.

@armadillu
Created April 12, 2012 12:31
Show Gist options
  • Save armadillu/2366924 to your computer and use it in GitHub Desktop.
Save armadillu/2366924 to your computer and use it in GitHub Desktop.
recursive .svn dir delete
find . -type d -name .svn -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment