Skip to content

Instantly share code, notes, and snippets.

@Shilo
Created October 24, 2013 05:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shilo/7131885 to your computer and use it in GitHub Desktop.
Save Shilo/7131885 to your computer and use it in GitHub Desktop.
Bash script command to recursively remove ".svn" directory from currently directory.
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