Help for this page

Select Code to Download


  1. or download this
    push @eigrp, "$line\n" 
      if $line =~ m/$logsIncDate/ && $line =~ m/SW_MATM-4-MACFLAP_NOTIF/;
    
  2. or download this
    while( <$fh> ) {
      push @eigrp, $_ if /$logsIncDate/ && /SW_MATM-4-MACFLAP-NOTIF/;
    }