如何用shell统计当前目录下子目录的大小

前端之家收集整理的这篇文章主要介绍了如何用shell统计当前目录下子目录的大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
du -sh * | sort -hr

显示

2.4G    share
2.4G    local
1.8G    lib64
1.6G    lib
368M    bin
262M    include
218M    src
121M    libexec
63M sbin
0   tmp
0   games
0   etc

其中,du命令,-s表示summary统计,-h表示人类;sort的参数,-h同样表示人类,-r表示反向显示
如果只是列当前目录下的文件,不包括子目录的大小,则直接用

ls -lSh

显示

-rw-r--r--.  1 root root  18K Nov 28  2016 COPYING
drwxr-xr-x.  2 root root 4.0K Feb 11 20:04 bin
drwxr-xr-x.  3 root root 4.0K Feb 11 20:04 include
drwxr-xr-x. 10 root root 4.0K Feb 11 20:05 MysqL-test
drwxr-xr-x. 28 root root 4.0K Feb 11 20:05 share
-rw-r--r--.  1 root root 2.5K Nov 28  2016 README
drwxr-xr-x.  4 root root  191 May  4 11:39 lib
drwxr-xr-x.  2 root root  112 Feb 11 20:05 support-files
drwxr-xr-x.  2 root root   55 Feb 11 20:04 docs
drwxr-xr-x.  4 root root   30 Feb 11 20:04 man

这里的-h表示人类,-S表示按照大小排序,其中如果是目录,则显示目录文件的大小,而不是目录里所有文件的大小。

原文链接:https://www.f2er.com/bash/392393.html

猜你在找的Bash相关文章