#!/bin/bash
#写一个自动检测磁盘使用率的脚本
#当磁盘使用空间达到90%以上时,需要发送邮件给相关人员
IP=$(ifconfig eth0 | grep broadcast | tr -s ' '| cut -d " " -f3 )
STORGE=$(df -hP | awk '{print int($5)}')
if [[ $STORGE > 90 ]];then
echo "$IP 服务器的磁盘空间使用率已经超过90%,请处理!" | mail -s "$IP 服务器硬盘警告" 53355@qq.com
fi