站长资源操作系统

Linux系统找出大文件的方法

整理:jimmy2025/1/12浏览2
简介du -s /home/* | sort -nr也可以用find,查找大于200M的文件并显示详细信息find . -size +100000000c -exec ls -lh {} ;

du -s /home/* | sort -nr

也可以用find,查找大于200M的文件并显示详细信息

find . -size +100000000c -exec ls -lh {} ;