blob: 1a5e6890d2ef942320c4ab2910a792c579b05e74 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env perl
use Date::Calc qw/Today_and_Now/;
($year,$month,$day,$hour,$min,$sec) = Today_and_Now();
my $date = sprintf "%s-%02d-%02dT%02d:%02d:%02dZ",$year,$month,$day,$hour,$min,$sec;
print $date;
|