find . -type f -size +50M
# 显示文件信息
find . -type f -size +50M -print0 | xargs -0 ls -l
# 显示文件具体大小
find . -type f -size +50M -print0 | xargs -0 du -h
# 对查找结果按照文件大小做一个排序
find . -type f -size +800M -print0 | xargs -0 du -h | sort -nr
文件大小具体信息
du -h --max-depth=1
-h会导致排序不准确,改成-hm就可以解决
du -hm --max-depth=2 | sort -n
# 查出最大的10个文件夹
du -hm --max-depth=2 | sort -nr | head -10