监控主机的磁盘空间,当使用空间超过90%就通过发mail来发警告

#!/bin/bash 
#monitor available disk space 

# 执行0 * * * * /home/check_xu.sh 


SPACE='df | sed -n '/ \ / $ / p' | gawk '{print $5}' | sed  's/%//' 
if [ $SPACE -ge 90 ] 
then 
[email protected] 
fi 

你可能感兴趣的:(原创脚本-shell编写)