2018-09-18 du -h -d1 只查看一级目录统计的空间占用

[root@swarm-node1 sdb]# du -sh -d1
du: warning: summarizing conflicts with --max-depth=1
Try 'du --help' for more information.


[root@swarm-node1 sdb]# du -h -d1
57M     ./leo_log_test
69G     ./dsp-bidder-logs
980K    ./shell
32G     ./leo_log
16K     ./lost+found
101G    .

-d1 表示当前目录只进入下一级目录

-s 和 -d是相互矛盾的,所以用
du -h -d1

-d, --max-depth=N print the total for a directory (or file, with --all)
only if it is N or fewer levels below the command
line argument; --max-depth=0 is the same as
--summarize

另一种写法则是du -h --max-depth=1

你可能感兴趣的:(2018-09-18 du -h -d1 只查看一级目录统计的空间占用)