Help for this page

Select Code to Download


  1. or download this
    my $target = UnixDate(
        Date_ConvTZ( ParseDate("3 days ago"), 'PST', 'GMT' )
    ...
    m/\[$target:/ and print DATA $_ while <FH>;
    close DATA;
    close FH;
    
  2. or download this
    substr( $_, 34, 11 ) eq $target and print DATA $_ while <FH>
    
  3. or download this
    print if $logSecs > $startSecs && $logSecs < $endSecs;