摘要: 发送前一天的监控日志#!/bin/bash source /etc/profile time=`date -d '-1 day' "+%Y%m%d"` #判断服务是否已经启动 ser=`/usr/bin/pgrep sendmail` if [ "$ser" != "" ] then echo "the service is running" else /etc/init.d/sendmail ... 阅读全文
posted @ 2016-06-20 17:50 贺呵呵 阅读(439) 评论(0) 推荐(0) 编辑