We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc78081 commit 3c2f387Copy full SHA for 3c2f387
1 file changed
command/du.md
@@ -54,22 +54,22 @@ $ du -sh * | sort -h # 按文件大小排序
54
显示目录或者文件所占空间:
55
56
```shell
57
-root@localhost [test]# du
58
-608 ./test6
59
-308 ./test4
60
-4 ./scf/lib
61
-4 ./scf/service/deploy/product
62
-4 ./scf/service/deploy/info
63
-12 ./scf/service/deploy
64
-16 ./scf/service
65
-4 ./scf/doc
66
-4 ./scf/bin
67
-32 ./scf
68
-8 ./test3
69
-1288 .
+root@localhost [test]# du -sh ./*
+608K ./test6
+308M ./test4
+4K ./scf/lib
+4K ./scf/service/deploy/product
+4K ./scf/service/deploy/info
+12G./scf/service/deploy
+16M ./scf/service
+4K ./scf/doc
+4K ./scf/bin
+32K ./scf
+8M ./test3
+12.34G .
70
```
71
72
-只显示当前目录下面的子目录的目录大小和当前目录的总的大小,最下面的1288为当前目录的总大小
+只显示当前目录下面的子目录的目录大小和当前目录的总的大小,最下面的12.34为当前目录的总大小
73
74
显示指定文件所占空间:
75
0 commit comments