Help for this page
$ENV{TZ} = "America/New_York"; my $now_string = strftime "%a %b %e %H:%M:%S %Y %c", localtime; print "$now_string\n";
$ENV{TZ} = "America/Chicago"; my $now_string = strftime "%a %b %e %H:%M:%S %Y %c", localtime; ... $ENV{TZ} = "America/New_York"; $now_string = strftime "%a %b %e %H:%M:%S %Y %c", localtime; print "$now_string\n";