[PowerShell] linux下删除所有.svn目录 →→→→→进入此内容的聊天室

来自 , 2020-01-22, 写在 PowerShell, 查看 154 次.
URL http://www.code666.cn/view/b47767f9
  1. # try first with:
  2. find . -name ".svn" -type d | xargs -n1 echo
  3.  
  4. # then:
  5. find . -name ".svn" -type d | xargs -n1 rm -R

回复 "linux下删除所有.svn目录"

这儿你可以回复上面这条便签

captcha