Skip to content

Instantly share code, notes, and snippets.

@einthusan
Forked from djadriano/gist:5041994
Last active August 29, 2015 14:06
Show Gist options
  • Save einthusan/6921b0be9013db267c0f to your computer and use it in GitHub Desktop.
Save einthusan/6921b0be9013db267c0f to your computer and use it in GitHub Desktop.
Find and remove svn files
// find .svn files
find . -type d -name .svn
// remove .svn files
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