On Friday 27 October 2006 11:55, Jorge Almeida wrote: > What are the numbers at the beginning of each line in the logs of > emerge? Example: > 1161911504: --- AUTOCLEAN: Nothing unmerged. > > I'm assuming that 1161911504 is some date. If so, how can I translate it > into something human-meaningfull? > -- > Jorge Almeida
What it is: http://en.wikipedia.org/wiki/Unix_time One way to translate it to a human readable form is this: $ python -c "import time; print time.ctime(1161911504)" Not sure if there are console apps that can do this. It's not very common to work with timestamps in the console afaik :) -- [email protected] mailing list

