Does any one knows how to covert date of one timezone to other time zone.for example :
if I have date in EDT like this : Thu Nov 24 02:00:10 EST 2005
it should get converted into IST like this : 11/24/05 12:30:02
I have used following but it gives only for "date" ie for unix date command like this :
my $time = `TZ='India' date +"%D %T %u"`;
print "$time";
~Pankaj