centos6查看运行服务器,centos查看服务器资源利用率脚本
一.创建check.sh脚本并输入脚本内容vi /root/check.sh#!/bin/bashfunction cpu() {NUM=1while [ $NUM -le 3 ]; doutil=`vmstat |awk '{if(NR==3)print 100-$15"%"}'`user=`vmstat |awk '{if(NR==3)print $13"%"}'`sys=`vmstat |a...