centos查找大文件

首先到相当的目录下面,按下面方式查找
find . -type f -size +800M  -print0 | xargs -0 ls -lah

或者从根目录(/)开始查找

find / -type f -size +800M  -print0 | xargs -0 ls -lah
原文地址:https://www.cnblogs.com/weilaibuxiangshuo/p/12130811.html