in reply to Computing Average Utilization

There was an error in the code that I just posted. The line:
die "Not a valid year\n" unless ($year =~ m/\d+$/);
should read:
die "Not a valid year\n" unless ($number_of_years =~ m/\d+$/);