什么命令可以非递归显示特定目录的磁盘使用情况?

什么命令可以非递归显示特定目录的磁盘使用情况?

我可以显示目录内容占用了多少磁盘空间(不包括其子目录(及其内容))吗?如果可以,请提供哪些命令?谢谢。

答案1

摘录自du --help

-h, --human-readable  print sizes in human readable format (e.g., 1K 234M 2G)
-S, --separate-dirs   do not include size of subdirectories
-s, --summarize       display only a total for each argument

跑步:

du -Shs /path/to/dir

应该能给你你想要的东西。

相关内容