du命令

du命令


查看当前目录下的所有目录及子目录的大小

[root@121 redis-2.8.19]# du -h .

-h表示用K、M、G的人性化形式显示

[root@121 redis-2.8.19]# du -h --max-depth=1 .
[root@121 redis-2.8.19]# du -h --max-depth=1 .
4.0K    ./redis_27002
4.0K    ./redis_37001
4.0K    ./redis_17002
4.0K    ./redis_7001
4.0K    ./redis_17001
4.0K    ./redis_17000
44M     ./redis_7000
4.0K    ./redis_27001
4.0K    ./redis_37002
4.0K    ./redis_7002
4.0K    ./redis_37000
4.0K    ./redis_27000
44M     .

访问的目录深度为--max-depth=1,只显示当前目录下的子目录。


查看当前目录的大小,列出一个总值

[root@121 redis-2.8.19]# du -sh .
44M


你可能感兴趣的:(du命令)