命令行删除文件夹下的所有的.svn文件

windows命令行: 

for /r . %a in (.) do if exist "%a\.svn" rd/s/q "%a\.svn"

 

Linux命令行:

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

 

 

出处:https://www.cnblogs.com/itech/archive/2011/09/02/2163953.html

posted on 2020-04-26 21:02  jack_Meng  阅读(1377)  评论(0编辑  收藏  举报

导航