Linux日常巡检脚本

Linux日常巡检脚本

先写一点点,后续完善

#!/bin/bash
#服务器巡检脚本

#获取IP地址
IP1=`ip a |grep inet |grep -v inet6 |grep -v 127.0.0 |awk -F " " '{print $2}'`
echo  IP=${IP1%%/*}

#CPU个数
CPUNum=`cat /proc/cpuinfo| grep "processor"| wc -l`

#CPU的空闲率
CPU_idle=`sar -u 2 1|grep Av|awk '{print $NF}'`

#磁盘卷组的使用率
filesystem_names=`df |grep mapper |awk '{print $6}'`
for filesystem_name in $filesystem_names
	do
		echo ${filesystem_name}=`df |grep mapper|grep -w ${filesystem_name} |awk '{print $5}'`
	done

你可能感兴趣的:(Linux,shell)