in reply to Re: Epoch time conversion in CSV
in thread Epoch time conversion in CSV

You should consider using an ISO8601 time format, for all the reasons Marshall suggests. This is the code I usually use:
use POSIX qw/strftime/; print strftime('%Y-%m-%d %H:%M:%S',gmtime);
If you want local time use this:
print strftime('%Y-%m-%d %H:%M:%S',localtime);