Skip to content

Instantly share code, notes, and snippets.

@qinshulei
Forked from rafaelrinaldi/rm_svn_files.sh
Created August 11, 2014 07:11
Show Gist options
  • Save qinshulei/1f0c1bb4c9773ae554c2 to your computer and use it in GitHub Desktop.
Save qinshulei/1f0c1bb4c9773ae554c2 to your computer and use it in GitHub Desktop.
rm all .svn form svn
# 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