in reply to Re: Production level script template
in thread Production level script template
The programmer can then do this:sub h_localtime() { my %time; my @time = localtime(time); my $iter = 0; my @iter = qw/sec min hour mday mon year wday yday isdst/; foreach (@iter) { $time{$_} = $time[$iter]; $iter++; } $time{mon}++; # make month 1..12 instead of 0..11 $time{year}+=1900; # make year absolute instead of (year-1900) $time{wday}++; # make week day 1..7 instead of 0..6 return %time; }
my %t = h_localtime;
printf "%d %d %d\n", @t{qw/mday mon year/};
I don't know that it's a significant benefit in the parent example, but I like it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Production level script template
by Tanktalus (Canon) on Sep 08, 2005 at 19:21 UTC |