Skip to content

Instantly share code, notes, and snippets.

@mgibowski
Created February 22, 2012 11:47
Show Gist options
  • Save mgibowski/1884460 to your computer and use it in GitHub Desktop.
Save mgibowski/1884460 to your computer and use it in GitHub Desktop.
[svn] remove all .svn entries
find ./ -name ".svn" -type d | xargs rm -rf
@glagola
Copy link

glagola commented Feb 22, 2012

find ./ -name ".svn" -type d -exec rm -rf {} ;

find is powerfull tool ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment