码迷,mamicode.com
首页 > 其他好文 > 详细

获取指定目录大小

时间:2020-03-06 15:34:46      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:family   http   -o   com   class   获取   image   inf   sql   

要求:打印/opt/目录的文件大小(只打印数字)

 

[root@sql02 opt]# du -h  #获取所有文件占用大小
0       ./scp
257M    ./mysql-cluster
357M    .
[root@sql02 opt]# du -h|sed -n $p #取最后一行,获取总大小
357M    .
[root@sql02 opt]# du -h|sed -n $p|grep -o ".*M"  #打印指定字符串
357M
[root@sql02 opt]# du -h|sed -n $p|grep -o ".*M"|sed s/M//g #将字符串M全部替换为空
357
[root@sql02 opt]# 

  [root@sql02 opt]# du -h /opt |sed -n ‘$p‘|grep -o ".*M"|sed ‘s/M//g‘
  357
  [root@sql02 opt]

 

实现效果:

技术图片

 

获取指定目录大小

标签:family   http   -o   com   class   获取   image   inf   sql   

原文地址:https://www.cnblogs.com/tanshouke/p/12426393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!