Skip to content

Instantly share code, notes, and snippets.

@michalvalasek
Created May 30, 2013 08:02
Show Gist options
  • Save michalvalasek/5676389 to your computer and use it in GitHub Desktop.
Save michalvalasek/5676389 to your computer and use it in GitHub Desktop.
Delete all .svn files (OSX)
find . -name .svn -type d -print0 |xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment