On Sep 14, siren jones said:

>Where can I get more info on using localtime() function or
>POSIX::strftime?

  perldoc -f localtime

For any built-in function, use

  perldoc -f NAME

For the POSIX module, do

  perldoc POSIX

It'll bring up the module's documentation.  Search in there for
'strftime'.  It uses the system's strfmite(1) notation for parts of the
date, so I'm quite sure you can use whatever you used for the date command
with the POSIX::strftime() function.  For more on your system's
strftime(1) command, do

  man strftime

-- 
Jeff "japhy" Pinyan      [EMAIL PROTECTED]      http://www.pobox.com/~japhy/
RPI Acacia brother #734   http://www.perlmonks.org/   http://www.cpan.org/
** Look for "Regular Expressions in Perl" published by Manning, in 2002 **


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to