Re: convert UNIX timestamp

2003-10-04 Thread Randal L. Schwartz
> "Jason" == Jason Normandin <[EMAIL PROTECTED]> writes: Jason> How can I reverse this ? ( Convert date/time format to UNIX timestamp ) There's a myriad of ways. Visit search.cpan.org and type "date" or "time". The most flexible is probably Date::Manip, which can convert "third friday in ma

Re: convert UNIX timestamp

2003-10-04 Thread Jason Normandin
al Message- From: Mike Blezien [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 10:08 AM To: [EMAIL PROTECTED] Subject: convert UNIX timestamp Hello, how can one convert a unix timestamp to a readable date/time format. I know there's a module to do this, but don't recall whic

Re: convert UNIX timestamp

2003-10-01 Thread Mike Blezien
thx's, I knew it was something simple... just needed a reminder. -- MikeBlezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing Providing Internet Solutions that work! http://www.thunder-rain.com Quality Web Hosting http://www.justlightening.net MSN: [EMAIL PROTECTED] =-=-

Re: convert UNIX timestamp

2003-10-01 Thread Jeff Westman
Mike Blezien <[EMAIL PROTECTED]> wrote: > Hello, > > how can one convert a unix timestamp to a readable date/time format. I know > there's a module to do this, but don't recall which one is used. IE. > convert the unix timestamp: 1064616515 > > thx's > Mickalo perl -e "print scalar localtime()

RE: convert UNIX timestamp

2003-10-01 Thread Hall, Scott
Mickalo, perldoc -f localtime perldoc -f gmtime > perl -e 'print scalar localtime (1064616515), "\n"' Fri Sep 26 18:48:35 2003 Scott -Original Message- From: Mike Blezien [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 10:08 AM To: [EMAIL PROTECTED

convert UNIX timestamp

2003-10-01 Thread Mike Blezien
Hello, how can one convert a unix timestamp to a readable date/time format. I know there's a module to do this, but don't recall which one is used. IE. convert the unix timestamp: 1064616515 thx's Mickalo =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishing Providing Intern