linux 查找大文件

find . -type f -size +1000000k 

Linux系统下查找大文件或目录的技巧

du -sh [dirname|filename]

如:

当前目录的大小:

du -sh .

当前目录下个文件或目录的大小:

du -sh *

相关推荐