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

13 regels
302 B

  1. #!/usr/bin/env perl
  2. #-*-mode: Perl; coding: utf-8;-*-
  3. use strict;
  4. use warnings;
  5. use POSIX qw(strftime);
  6. my $now = time;
  7. my $tz = strftime(('%z', (localtime $now)));
  8. $tz =~ s/(\d{2})(\d{2})/$1:$2/smx;
  9. my $time = strftime('%Y-%m-%dT%H:%M:%S', (localtime $now));
  10. print "$time$tz\n";
  11. exit 0;