标签:style color 使用 ar 文件 sp c linux r
find . -name ‘文件(夹)名‘ -type d | xargs rm -rf 递归查找并删除当前文件夹下的指定文件(夹)名
grep -iR 文件(夹)名 . | egrep -v ‘需要排除的文件(夹)名‘ 当前文件夹下(除指定子文件(夹)外)递归查找指定的文件(夹)
du -sh * 计算当前文件夹下所有文件(夹)的大小
netstat -lntup|grep 5432 查看指定端口使用情况
scp 文件名(-r 文件夹名) 用户名@主机IP:目标文件夹 上传指定文件(夹)至目标主机,调换目标主机地址和文件(夹)地址即为下载,-r参数表示递归
标签:style color 使用 ar 文件 sp c linux r
原文地址:http://www.cnblogs.com/xyd21c/p/3995037.html