diff options
-rwxr-xr-x | unixtime.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unixtime.pl b/unixtime.pl index f371b0c..08a987a 100755 --- a/unixtime.pl +++ b/unixtime.pl @@ -1,4 +1,4 @@ #!/usr/bin/perl use POSIX qw( strftime ); -print strftime('%a %b %e %H:%M:%S %Z %Y', localtime( $ARGV[0] ) ); +print strftime('%a %b %e %H:%M:%S %Z %Y', localtime( $ARGV[0] ) ) . "\n"; |