解决mail: command not found

post by rocdk890 / 2013-7-29 17:09 Monday linux技术
 解决mail: command not found
 今天使用脚本来监控系统状态,为了把每天系统状态记录下来并发到邮箱里,我写了个脚本来实现,但在发邮件的过程中出现了mail: command not found.
 系统:centos 5.9
脚本内容:
#!/bin/bash
dug=$(df -h | grep "/$" | awk '{print $4}' | awk -F% '{print $1}')
cug=$(expr 100 - $(mpstat | tail -1 | awk '{print $10}' | awk -F. '{print $1}'))
mug=$(expr $(free | grep "cache:" | awk '{print $3}') \* 100 / $(free | grep "Mem:" | awk '{print $2}'))
alog="/root/alert.txt"
AMAIL="root@localhost.localdomain"
if [ $dug -gt 3 ]
then
echo "Disk usage:$dug%" >> $alog
fi
if [ $cug -gt 2 ]
then
echo "cpu usage:$cug%" >> $alog
fi
if [ $mug -gt 2 ]
then
echo "Memory usage:$mug%" >> $alog
fi
if [ -f $alog ]
then
cat $alog | mail -s "Host Alert" $AMAIL
rm -fr $alog
fi

解决办法:
yum -y install mailx sysstat
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-412.html

标签: 系统 shell 监控 mail 系统状态

评论: