Welcome

首页 / 操作系统 / Linux / Linux系统找出大文件的方法

du -s /home/* | sort -nr
也可以用find,查找大于200M的文件并显示详细信息
find . -size +100000000c -exec ls -lh {} ;