码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本中变量的递归使用--真实内存使用查看脚本

时间:2017-09-05 15:49:03      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:shell 内存 脚本


脚本中进行变量计算时,需要加一个[ ],在外面再套一个$


[root@ES25 tmp]# cat real_mem_used01.sh
#!/bin/bash
TOTAL=`free -g|grep Mem |awk ‘{print $2}‘`
USED=`free -g|grep Mem |awk ‘{print $3}‘`
BUFFER=`free -g|grep Mem |awk ‘{print $6}‘`
CACHE=`free -g|grep Mem |awk ‘{print $7}‘`
real_used=$[$USED - $BUFFER - $CACHE]
PUSED=$[$real_used*100/$TOTAL]
echo $PUSED%
[root@ES25 tmp]#
[root@ES25 tmp]# sh real_mem_used01.sh
12%
[root@ES25 tmp]#

方法二:

[root@ES25 tmp]# cat aa.sh
#!/bin/bash
Real_used=`free -g|grep cache |grep ":"|awk ‘{print $3}‘`
Total=`free -g|grep Mem|awk ‘{print $2}‘`
awk ‘BEGIN{printf"%.2f\n",(‘$Real_used‘/‘$Total‘)*100}‘
[root@ES25 tmp]# sh aa.sh
10.64
[root@ES25 tmp]#

shell脚本中变量的递归使用--真实内存使用查看脚本

标签:shell 内存 脚本

原文地址:http://jingfeng.blog.51cto.com/9152964/1962808

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