冭过兲眞. 發表於 2011-10-31 10:28:55

Linux系统找出大文件的方法

du -s /home/* | sort -nr
也可以用find,查找大于200M的文件并显示详细信息
find . -size +100000000c -exec ls -lh {} ;
頁: [1]
查看完整版本: Linux系统找出大文件的方法