#!/bin/sh
echo `free | awk '{print $3}'` | awk '{print $2}' >a
str=`cat a`
echo $str
echo `free | awk '{print $2}'` | awk '{print $2}' >b
tot=`cat b`
echo $tot
#rc=`expr $str / $tot`
rate=`echo "scale=2;$str/$tot"|bc`
echo $rate
bc的用法搜索中。。。
阅读(2414) | 评论(3) | 转发(0) |