如何在 Linux 中查找最大的 10 个文件

https://linux.cn/article-9495-1.html

find / -type f -print0 | xargs -0 du -h | sort -rh | head -n 10
原文地址:https://www.cnblogs.com/rgqancy/p/10169342.html