Skip to content

Instantly share code, notes, and snippets.

@QuestionDevelopment
Created August 23, 2013 19:53
Show Gist options
  • Save QuestionDevelopment/6323311 to your computer and use it in GitHub Desktop.
Save QuestionDevelopment/6323311 to your computer and use it in GitHub Desktop.
Find and delete svn folders
find ./ -name .svn -exec ls -l {} \;
find ./ -name .svn -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment