in reply to How to get the current Date and Time using Perl on windows?
If you want a human-readable date/time stamp, then probably the simplest way is to use localtime.
For example:
C:\>perl -le "print scalar localtime" Wed Jan 2 15:27:20 2008
Cheers,
Darren :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get the current Date and Time using Perl on windows?
by goibhniu (Hermit) on Jan 02, 2008 at 21:32 UTC | |
by McDarren (Abbot) on Jan 03, 2008 at 01:15 UTC | |
by goibhniu (Hermit) on Jan 03, 2008 at 16:41 UTC |