Help for this page

Select Code to Download


  1. or download this
    while (<$fh>)
    {
    ...
          push ( @lines, filterLog($_) );
       }
    }
    
  2. or download this
    push @lines, grep { /Running|Dump|FromCB|Update/o && filterLog($_) } <
    +$fh>;