$ cat dt.pl use strict; use warnings; use DateTime::Format::DateManip;
my $dt = DateTime::Format::DateManip->parse_datetime( shift || die ); print $dt->strftime( '%a, %b %e %Y %l:%M %p %Z' ); $ perl -l dt.pl 'Oct 3, 2006 9am' Tue, Oct 3 2006 9:00 AM PDT $ perl -l dt.pl 'Dec 3, 2006 9am' Sun, Dec 3 2006 8:00 AM PST It guessing my timezone is ok, but it's not exactly what outcome I'd like. Is that a problem with that module or the way I'm using it? -- Bill Moseley [EMAIL PROTECTED]