Centos7查看当前目录下的文件大小
[root@VM_0_12_centos php]# ll -h
total 400K
drwxrwxrwx 6 daemon daemon 4.0K May 4 16:09 aimi
drwxrwxrwx 12 daemon daemon 4.0K Oct 12 2019 aimiadmin
drwxrwxrwx 8 daemon daemon 4.0K Jun 27 2019 aimiwap
-rw-r–r-- 1 root root 379K Jul 22 2021 dump.rdb
drwxrwxrwx 18 daemon daemon 4.0K Aug 14 2020 testApp
-rwxrwxrwx 1 daemon daemon 0 Oct 2 2019 zufang.html
查看指定目录大小
[root@VM_0_12_centos php]# du -sh /data/php/aimi
36M /data/php/aimi
查看指定目录下的子目录大小
[root@VM_0_12_centos php]# du -h --max-depth=1 /data/php
8.3M /data/php/aimiwap
4.2G /data/php/testApp
86M /data/php/aimiadmin
36M /data/php/aimi
4.3G /data/php
看目录下所有文件及文件夹的大小
[root@VM_0_12_centos php]# du -sh *
36M aimi
86M aimiadmin
8.3M aimiwap
384K dump.rdb
4.2G testApp
0 zufang.html
06-15
2819
06-14
131
06-06
240