- or download this
foreach (@lines) {
my($month, $day, $time, $data1, $data2) = split / /;
open(NEWTIME, $time);
- or download this
while (<NEWTIME>) {
- or download this
my($hour, $minute, $second) = split /:/;
$time2 = join(':', $hour, $minute);
}
- or download this
select NEWLOG;
print "$time2\n";
- or download this
open NEWLOG, ">>foofinal.txt";
}