[SOLVED] Converting timestamps to human-readable?

More logs are turning up with decimal numbers instead of dates and times. Is there a slick way to filter a log and convert these numbers into something human-readable? I imagine I will have to make readable copies of the logs, but it would be great if the log could just be piped through it to the screen.
In the meantime I'm going to try to make myself a ready-reckoner in Calc.
Richard
UPDATE
I found a ready-reckoner on the web: http://www.onlineconversion.com/unix_time.htm
And I discovered
All I need now is to bash it into shape
In the meantime I'm going to try to make myself a ready-reckoner in Calc.
Richard
UPDATE
I found a ready-reckoner on the web: http://www.onlineconversion.com/unix_time.htm
And I discovered
- Code: Select all
date -d "@1331776887.470"
All I need now is to bash it into shape
