#!/usr/bin/perl if ( $#ARGV == 0 ) { print scalar localtime($ARGV[0]), "\n"; } else { print "usage: stamp2date seconds_since_unix_epoch\n"; exit 1; }