summaryrefslogtreecommitdiff
path: root/unixtime.pl
blob: 08a987acfd9816339d447c00994bdbf4024268e5 (plain)
1
2
3
4
#!/usr/bin/perl
use POSIX qw( strftime );

print strftime('%a %b %e %H:%M:%S %Z %Y', localtime( $ARGV[0] ) ) . "\n";