Quick shell one-liner:
perl -le 'print scalar localtime 1357810480;'
Thu Jan 10 10:34:40 2013
Or, if you happen to have the timestamps in a file, one per line:
perl -lne 'print scalar localtime $_;' <timestamps
Quick shell one-liner:
perl -le 'print scalar localtime 1357810480;'
Thu Jan 10 10:34:40 2013
Or, if you happen to have the timestamps in a file, one per line:
perl -lne 'print scalar localtime $_;' <timestamps