常用组合

# 查找当前目录下最大的 10 个文件/目录
du -sh * | sort -rh | head -10

# 查看各子目录大小并按从大到小排序
du -h --max-depth=1 | sort -rh