Skip to content

Instantly share code, notes, and snippets.

@mjn666
Created September 2, 2014 04:40
Show Gist options
  • Save mjn666/ce72b5469efd41d4e59a to your computer and use it in GitHub Desktop.
Save mjn666/ce72b5469efd41d4e59a to your computer and use it in GitHub Desktop.
Recursively remove .svn folders from directory(s)
find . -type d -name .svn -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment