# 搜索大于100M的文件
find . -type f -size +100M
find . -size +100M
# 搜索 + 详情
find . -type f -size +100M -print0 | xargs -0 ls -l
# 搜索 + 文件大小
find . -type f -size +100M -print0 | xargs -0 du -h
# 搜索 + 排序
find . -type f -size +100M -print0 | xargs -0 du -h | sort -nr
# 大小排序
du -s * | sort -nr | head