Help for this page

Select Code to Download


  1. or download this
    next unless  /Synchronizing started|Synchronizing finished|Summary/;
    my @date= m|(\d+)/(\d+)/(\d+)|;
    
  2. or download this
    my @date;
    if (@date = m{(\d+)/(\d+)/(\d+)}) {
      ...
    }
    
  3. or download this
    my %times;
    my $job;
    ...
      }
    }
    print Dumper(\%times); use Data::Dumper;