Skip to content

Instantly share code, notes, and snippets.

@ysawa
Created October 13, 2011 00:42
Show Gist options
  • Save ysawa/1283053 to your computer and use it in GitHub Desktop.
Save ysawa/1283053 to your computer and use it in GitHub Desktop.
remove all .svn directories
#!/bin/sh
find . -name ".svn" -type d -exec rm -rf {} ";"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment