是否可以ls在Unix中使用列出子目录的总大小及其所有内容,而不是通常的4K(我认为)只是目录文件本身?
ls
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: d ISK ü 鼠尾草
du
-s:显示每个指定文件的摘要。(相当于-d 0)
-s
-d 0
-h:“人类可读”输出。使用单位后缀: B yte, K ibibyte(KiB), M EB(MiB), G ibibyte(GiB), T EB(TiB)和 P EB(PiB)。(BASE2)
-h