1、查看centos版本
# lsb_release -a
2、查找大于1000M的文件
find / -type f -size +1000M -print0 | xargs -0 du –h
本文共 147 字,大约阅读时间需要 1 分钟。
1、查看centos版本
# lsb_release -a
2、查找大于1000M的文件
find / -type f -size +1000M -print0 | xargs -0 du –h
转载于:https://www.cnblogs.com/hoge66/p/8600313.html