首页 > 代码库 > 运行脚本下的 类tail -f   sed -n

运行脚本下的 类tail -f   sed -n

实时监控日志  我们常用的方法是

tail -f  logfile

但是 ,将其用到 脚本中 就会卡死了  ,跟同事学习讨论了一天 (主要是学习技术分享)决定用sed -n 来替代

sed -n ‘/datea/,/dateb/p‘

分别定义 两个时间变量 中间间隔 3分钟 



下附脚本

#!/bin/bash

#

#filename=sed_exception.sh

date_ago=`date  +‘%F %H:%M‘ -d ‘3 minutes ago‘`

date=`date +‘%F %H:%M‘`

dir=/usr/local/red5/log/red5.log

sed -n "/${date_ago}/,/${date}/p"  $dir  |  /bin/grep "Exception" > /dev/null


if [[ -z "$?" ]];then

    echo 1

else

    echo 0

fi


本文出自 “明飞成长驿站” 博客,请务必保留此出处http://anyue007.blog.51cto.com/3113658/1904069

运行脚本下的 类tail -f   sed -n