in reply to How can I convert epoch seconds to date format

The most flexible way to do this is to use the strftime() function from the POSIX module that comes with perl. You can do something like:

use POSIX qw(strftime); + $time = time(); + print strftime("%m/%d/%Y %H:%M:%S",localtime($time));
Obviously you will use your own value for $time

/J\