Skip to content

Instantly share code, notes, and snippets.

@turbod
Created January 31, 2013 06:43
Show Gist options
  • Save turbod/4680837 to your computer and use it in GitHub Desktop.
Save turbod/4680837 to your computer and use it in GitHub Desktop.
Remove svn folders on linux
find . -iname ".svn" -print0 | xargs -0 rm -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment