Skip to content

Instantly share code, notes, and snippets.

@mashurex
Last active December 23, 2015 05:08
Show Gist options
  • Save mashurex/6584471 to your computer and use it in GitHub Desktop.
Save mashurex/6584471 to your computer and use it in GitHub Desktop.
Recursively delete .svn directories on Linux and OSX
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