Chinaunix首页 | 论坛 | 博客
  • 博客访问: 28269
  • 博文数量: 13
  • 博客积分: 653
  • 博客等级: 上士
  • 技术积分: 150
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-25 21:20
文章分类
文章存档

2011年(2)

2010年(11)

我的朋友

分类: LINUX

2010-12-02 11:41:22

脚本内容如下:
#!/usr/bin/perl
my $f_in = "/var/log/quagga/ospfd.log";
open(FH,"<",$f_in) or die "$!\n";
while(1)
{
        my $strings = ;
        print $strings;
        if($strings =~ m/deleted|InterfaceUp/)
        {
                `/bin/ospfd_alert.py -m \"$strings\" -r misc -R -s \"ospf\"`;
        }
}
close FH;
阅读(1017) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~