用shell本檢查日誌中是否有錯,有錯則發郵件

來源:互聯網
上載者:User

標籤:source   關鍵字   統計   

#!/bin/bash
#初始化環境變數
source .bash_profile
#日誌名中的固有日期格式
f_name=`date +%Y%m%d`
#日誌的路徑及名稱
log_file=/backup/db/rman/log/rman$f_name-0401.log
echo $log_file
#統計記錄檔行數
#line_num=`wc -l $log_file|awk ‘{print $1}‘`
#echo $line_num
#如果記錄檔不存在,則直接發送郵件;否則檢查檔案中是否有erro和Erro關鍵字,有則發郵件
if [ ! -e $log_file ]
then
 echo "send mail"
 echo "沒找到檔案$log_file" | mutt -s "BI庫rman備份時出現錯誤" -- [email protected]
else
 erro_num=`cat $log_file|grep ‘erro‘|wc -l`
 Erro_num=`cat $log_file|grep ‘Erro‘|wc -l`
  if [ $erro_num -gt 0 -o $Erro_num -gt 0 ]
  then
    echo "send mail"
    echo "請檢查檔案$log_file" | mutt -s "BI庫rman備份時出現錯誤" -- [email protected]
  fi
fi

本文出自 “LINUX” 部落格,請務必保留此出處http://linuxengineer.blog.51cto.com/7391710/1440330

用shell本檢查日誌中是否有錯,有錯則發郵件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.