欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

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

程序员文章站 2022-06-29 23:22:43
提取oralce当天的alert log的shell脚本 复制代码 代码如下:#/bin/sh#get alert of everyday#then name of fi...

提取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