I'm currently reading in a text file containing the following lines:
0 24000 97200 1 52200 95400 2 0 0 3 37800 180000 4 0 0 5 48000 95400 6 0 0
The first value represents the day (0 = sunday, 1 = monday, ...)
The numeric values, e.g. 24000, represent the total amount of seconds.
Eventually I would like to get something like this:

This is the code so far:
open(SCHEDULE, $schedule) or die print "Failed to open $schedule";
@lines = <SCHEDULE>;
@secondsfrom = (0,0,0,0,0,0,0);
@secondsto = (0,0,0,0,0,0,0);
@secondsextra = (0,0,0,0,0,0,0);
@days = ("sunday","monday","tuesday","wedsneday","thursday","friday","saturday");
foreach (@lines) {
($day, $fromtotalseconds, $tototalseconds) = split(/ /,$_,3);
@secondsfrom[$day] += $fromtotalseconds;
@secondsto[$day] += $tototalseconds;
}
for (my $i=0; $i<=6;$i++) {
print "\n@days[$i] @secondsfrom[$i] to @secondsto[$i]";
}
At this moment I'm stuck! I've been searching for days on how to convert these values to something similar like:
Sunday from 24000 to 86400 (MAX) Tuesday from 0 to 48000 and from 52200 to 86400 …
This is what it produces for me:
Sunday 24000 to 97200 Tuesday 52200 to 95400 …
qw(first second)instead("first", "second")andforinsteadforeach– loldop May 3 '12 at 11:09