Help for this page

Select Code to Download


  1. or download this
    my $found_date = 0;
    while( <LOG> ) {
        $found_date = 1 if /$date/o;
        print LOGFILE if $found_date;
    }