Skip to content

Instantly share code, notes, and snippets.

@magicianzrh
Last active August 29, 2015 14:22
Show Gist options
  • Save magicianzrh/32c69ed3e8a6a3a17d02 to your computer and use it in GitHub Desktop.
Save magicianzrh/32c69ed3e8a6a3a17d02 to your computer and use it in GitHub Desktop.
svn rm unversioned shell for mac
# 删除svn没有进入版本的文件
function svn_rm_unversioned {
svn st | grep "^?" | cut -b 9- | while read FILENAME;
do
FILENAME=`echo ${FILENAME} | sed 's/ /\\\ /g'`
rm -Rf ${FILENAME}
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment