du -h --max-depth=1
查看当前目录所有文件大小
du -sh
du -k --max-depth=1
以kb为单位显示
常用的几个参数
1.–max-depth=<目录层数> 超过指定层数的目录后,予以忽略。如果为0 则相当于du-sh
du -sh --max-depth=0
du: warning: summarizing is the same as using --max-depth=0
1.2G .
[root@AY140601135256035191Z www]#
但是如果直接du-0(数字零)表示每列出一个目录的信息,不换行 不显示单位
2.-s或–summarize 仅显示总计,即当前目录的大小。不显示单位 。
3.-h或–human-readable 以K,M,G为单位,提高信息的可读性。显示单位。