使用ls列出目录及其总大小

是否可以ls在Unix中使用列出子目录的总大小及其所有内容,而不是通常的4K(我认为)只是目录文件本身?

total 12K

drwxrwxr-x 6 *** *** 4.0K 2009-06-19 10:10 branches

drwxrwxr-x 13 *** *** 4.0K 2009-06-19 10:52 tags

drwxrwxr-x 16 *** *** 4.0K 2009-06-19 10:02 trunk

搜寻手册页后,我空白了。

回答:

尝试类似的方法:

du -sh *

简短版本:

du --summarize --human-readable *

说明:

du: ISK 鼠尾草

-s:显示每个指定文件的摘要。(相当于-d 0

-h:“人类可读”输出。使用单位后缀: yte, ibibyte(KiB), EB(MiB),

ibibyte(GiB), EB(TiB)和 EB(PiB)。(BASE2)

以上是 使用ls列出目录及其总大小 的全部内容, 来源链接: utcz.com/qa/421353.html

回到顶部