Linux磁盘使用状态报警脚本

Linux磁盘使用状态报警脚本

#!/bin/bash
ALLPER=$(df -h | awk '{sub(/%/,"",$5);print $5}' | sed -n '2,$p')
i=0
while true
do
for per in $ALLPER
do
if [ $per -ge 80 ]
then
wall "PID($$):There's no enough disk space and one partation has used $per% !"
((i++))
fi
done
if [ $i -eq 0 ]
then
break
fi
sleep 10
done

功能:加入到计划任务中,如果有一分区使用量达到80%,则虚拟终端弹出报警提示(间隔10秒)。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a4932e3bc17cf653121f7c64ad2aa196.html