Skip to content

Instantly share code, notes, and snippets.

@markvital
Created December 6, 2012 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markvital/4226472 to your computer and use it in GitHub Desktop.
Save markvital/4226472 to your computer and use it in GitHub Desktop.
Recursively delete .svn directories
# Recursively deletes .svn directories in current dir
rm -rf `find . -type d -name .svn`
# from http://www.anyexample.com/linux_bsd/bash/recursively_delete__svn_directories.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment