in reply to time as number
use POSIX qw(strftime);
This line exports ONLY the string format time function from the POSIX core module.
If you do not recognize the "template" that steves used, they come from the posix date command.
You may want to ask the oracle for answers on man date.
This will explain what each formatting directive does.
For example:
Hope this helps - cheers - L~R%a Abbreviated weekday name. For example, Wed. %A Full weekday name. For example, Wednesday. %b Abbreviated month name. For example, Jan. %B Full month name. For example, January.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: time as number
by demerphq (Chancellor) on Feb 21, 2003 at 23:13 UTC |