1. # 搜索大于100M的文件
    2. find . -type f -size +100M
    3. find . -size +100M
    4. # 搜索 + 详情
    5. find . -type f -size +100M -print0 | xargs -0 ls -l
    6. # 搜索 + 文件大小
    7. find . -type f -size +100M -print0 | xargs -0 du -h
    8. # 搜索 + 排序
    9. find . -type f -size +100M -print0 | xargs -0 du -h | sort -nr
    10. # 大小排序
    11. du -s * | sort -nr | head