shell删除.svn

有时候会有需求删除目录下所有.svn目录,除了使用svn export命令之外,用shell脚本也可以轻松做到

try first with:

find . -name ".svn" -type d | xargs -n1 echo

then:

find . -name ".svn" -type d | xargs -n1 rm -R

首先用find命令找到这些文件,然后在|管道符后面加rm删除。
https://ishowshao.com/

你可能感兴趣的:(shell删除.svn)