免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 5989 | 回复: 10
打印 上一主题 下一主题

[hpux]如何查看一个目录下子目录占用空间 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2002-07-08 14:28 |只看该作者 |倒序浏览
有个目录/home/oracle
下面又有几个目录
a
b
c
等,现在想查看这几个目录占用了多少空间?
使用什么命令
du -sk
df /home/oracle
等好像不行啊,
或者需要个脚本?怎么写啊?
df /home/oracle|cut -c ??|grep ???
怎么写啊,我不太会,请教各位高手了!!

论坛徽章:
0
2 [报告]
发表于 2002-07-08 15:10 |只看该作者
Try this small script.

#!/usr/bin/sh

echo \"path:\\c\"
read Vp
ls $Vp | while read V1
do
        du -sk $Vp/$V1
done

论坛徽章:
0
3 [报告]
发表于 2002-07-08 16:53 |只看该作者

如果要把其中的文件的信息排除,只保留子目录信息呢?

请问该如何实现?
还有你的教本中echo \"path:\\c\"
其中的\\c是什么意思?
谢谢

论坛徽章:
0
4 [报告]
发表于 2002-07-08 18:38 |只看该作者

"du -ks aa" 不可以吗???

in AIX and Solaris,it can work fine

论坛徽章:
0
5 [报告]
发表于 2002-07-08 18:43 |只看该作者

怎么样取得ll信息中的文件名列的内容?

现在想加入一些教本处理调文件的输出,
想法是这样下面的教本,可是如何取得文件名列呢?
#!/usr/bin/sh

echo \"path:\\c\"
read Vp
for i in(ls -lr $Vp|grep \"^d\"|cut -d  -f
do
du -sk $Vp/$i
done

可是怎么不行啊,如何取得文件名列,改进一下这个教本呢?

论坛徽章:
0
6 [报告]
发表于 2002-07-09 10:01 |只看该作者
You can use man echo to get the meanings of \"/c\". And it means print line without appending a new-line. Here is the new script.

#!/usr/bin/sh

echo \"path:\\c\"
read Vp
ls -l $Vp | grep \"^d\" | awk \'{print $9}\' | while read V1
do
        du -sk $Vp/$V1
done

论坛徽章:
0
7 [报告]
发表于 2002-07-09 10:40 |只看该作者

it do work ,many thanks

btw:how can i get some info about awk or other script related command??

论坛徽章:
0
8 [报告]
发表于 2002-07-09 10:59 |只看该作者
I have some documents about this. And how can I send it to you?

论坛徽章:
0
9 [报告]
发表于 2002-07-09 11:22 |只看该作者

hi,send me a mail!thx

how about this document?difficult?
some times i feel it is so tidous to learn this script command
my mail is yuchengliu@sina.com
this mailbox is not so big ,so best compress your doc
many thanks

论坛徽章:
0
10 [报告]
发表于 2002-07-09 11:37 |只看该作者
I have sent it to you. It is a document about command \"awk\".
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP