2009年1月4日星期日

删除本地资源的SVN配置信息

cd $TargetDir && find . -name .svn -type d -print0 | xargs -0 rm -rf
Find directories named .svn in or below the current directory and delete them, processing filenames in such a way that file or directory names containing spaces or newlines are correctly handled.

没有评论: