Help for this page

Select Code to Download


  1. or download this
    my @dates;
    foreach $odate (@logs) {
    ...
    for my $date (@dates) {
        print "Processing $date\n";
    };
    
  2. or download this
    while (@logs = <FILE>) {
        foreach (@logs) {
    ...
    
  3. or download this
    while (my $odate = <FILE>) {
       ...
    };