首页 > 代码库 > 查询指定目录下所有子目录的大小
查询指定目录下所有子目录的大小
1 [root@localhost ~]# cat x.sh 2 #!/bin/bash 3 4 fun_x () { 5 6 du -h $1 |tail -1 7 8 } 9 10 for i in `ls $1` 11 do 12 fun_x $1$i 13 done 14 [root@localhost ~]# sh x.sh /usr/ 15 132M /usr/bin 16 4.0K /usr/etc 17 4.0K /usr/games 18 34M /usr/include 19 325M /usr/lib 20 447M /usr/lib64 21 34M /usr/libexec 22 6.1G /usr/local 23 28M /usr/sbin 24 1.1G /usr/share 25 48M /usr/src 26 0 /usr/tmp 27 [root@localhost ~]#
查询指定目录下所有子目录的大小
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。