天天看点

linux 查看文件大小

查看文件和文件夹大小:

du –sh dirname

如果查看某个目录下所有文件及文件的大小:

du –sh *

按照文件大小排序

du -sh * |sort -n

继续阅读