Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created August 22, 2009 23:29
Show Gist options
  • Save rafaelrinaldi/173040 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/173040 to your computer and use it in GitHub Desktop.
Remove SVN files from any folder
# Remove SVN files from any folder
rm-svn-files() {
find "$1" -name *.svn | xargs rm -rf
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment