关闭
linux下删除所有.svn目录方法为
find . -type d -name ".svn"|xargs rm -rf 或者
find . -type d -iname ".svn" -exec rm -rf {} \;
lsof -i:3690 列出谁在使用某个端口
curl -i http://www.lbypmall.com 在字符模式下获取文件,可用来检查web服务器是否能正常访问
本文参考链接:https://www.cnblogs.com/xihong2014/p/4364787.html