You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
374 B
Perl

#!/usr/local/bin/perl -w
my $time = time;
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime ($time);
my $newtime = $time - ($isdst * 3600);
my $stdtime = localtime ($newtime);
my $daytime = localtime ($time);
print "The current daylight time is: $daytime\n";
print "The current standard time is: $stdtime\n";