Skip to content

Instantly share code, notes, and snippets.

@mileszs
Created December 22, 2008 21:58
Show Gist options
  • Save mileszs/39142 to your computer and use it in GitHub Desktop.
Save mileszs/39142 to your computer and use it in GitHub Desktop.
# Remove '.svn' Directories Recursively
find . -type d -name ".svn" -exec rm -rf {} \;
# OR
rm -rf `find . -type d -name .svn`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment