Help for this page

Select Code to Download


  1. or download this
    $ENV{TZ} = "America/New_York";
    my $now_string = strftime "%a %b %e %H:%M:%S %Y %c", localtime;
    print "$now_string\n";
    
  2. or download this
    $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";