- or download this
my $TIMESTAMP;
...
for (@dates) {
$TIMESTAMP = $_->[0]->strftime("%Y-%m-%d %R");
}
- or download this
my $TIMESTAMP = $dates[-1][0]->strftime("%Y-%m-%d %R");
- or download this
my @log_final;
my $last = 0;
...
}
unshift @log_final, $log_line;
}