Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用du命令时,查看我的文件夹的大小,例如:
du
du -H --max-depth=1 some-folder/
28M 11M 8.0K 4.2M 260K 896K 86M 7.9M 24K 8.6M 22M 14M 6.0M 60K 912K 365M total
,最终大小不显示上述数字的实际总和。为什么摘要大小是错误的?
您正在执行的命令仅显示文件夹。some-folder因此,仅添加到总数中的任何文件,而不是单独列出。尝试这个:
some-folder
du -Hs some-folder/*
但请注意,如果您有隐藏文件(即带有点前缀的文件),则此命令也不会列出。