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

shell脚本

时间:2016-12-17 23:29:37      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:shell

#!/bin/bash

file="/export/ucinfo/shell/memory.log"

mem=`grep "used_memory:" $file | cut -d: -f2`

maxmem=`grep "maxmemory:" $file | cut -d: -f2`

number=`awk -v mem=$mem -v maxmem=$maxmem ‘BEGIN{printf "%0.2f\n",mem/maxmem}‘`

number01=`echo $number |awk -F "." ‘{print $2}‘`

echo $number01

number02=75

if [ "$number01" -lt "$number02" ]

then

    echo "less than 0.75"

else

    echo "more than 0.75"

fi


本文出自 “付炜超” 博客,谢绝转载!

shell脚本

标签:shell

原文地址:http://9399369.blog.51cto.com/9389369/1883588

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