一个检查分区内存并且发送邮件的shell脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个检查分区内存并且发送邮件的shell脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash
read -t 30 -p "请输入您想要查找那个分区(格式sda1~sda3):" aaa
number=$(df -h | grep $aaa | awk ‘{print $5}‘ | cut -d "%" -f 1)
if [ $number -ge "70" ]
then
echo "情况不正常,已经将邮件发送到您的邮箱内"
echo "小心,您的分区已经超越了阈值,请及时清理"|mutt -s "告警" [email protected]
else
echo "情况很正常,请不用担心"
fi
本文出自 “生活就是等待戈多” 博客,请务必保留此出处http://chenx1242.blog.51cto.com/10430133/1739442
以上是关于一个检查分区内存并且发送邮件的shell脚本的主要内容,如果未能解决你的问题,请参考以下文章