删除web路径下的.svn文件
很多打包后的web程序里都有svn遗留的影子,就是在很多目录下有.svn文件遗留。尽管这些文件不为影响web的正常运行,但为了防止信息、泄漏代码泄漏最好能将这像.svn文件删除。
linux下
1find ./ -name .svn | xargs rm -rf
windows下
1for /f “tokens=*” %i in (‘dir /s /b .svn’) do (rd /Q /S %i)
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/del-dotsvn/2746.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.