首页 > 系统 > Linux > 正文

提取oralce当天的alert log的shell脚本代码

2019-10-26 18:36:13
字体:
来源:转载
供稿:网友

提取oralce当天的alert log的shell脚本

代码如下:
#/bin/sh
#get alert of everyday
#then name of file is everyday_alert.sh
dir="/oracle/admin/bbdz/bdump"
num=$(cat -n ${dir}/alert_bbdz.log | grep "`date|cut -c 1-10`"|head -n 1 |awk '{print $1}')

tail +${num} ${dir}/alert_bbdz.log >>/oracle/admin/bbdz/alert/alert_bbdz_`date + '%Y%m%d'`.log

设定执行计划

代码如下:
crontab -e
58 23 * * * sh /oracle/script/every_alert.sh

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表