adrianx
Expert Member
Code:
$ date -d @1234567890
Sat Feb 14 01:31:30 SAST 2009
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
$ date -d @1234567890
Sat Feb 14 01:31:30 SAST 2009
+1Screw Valentine's.... I'm going to be celebrating this 1 second event! If I'm still awake, that is.Code:$ date -d @1234567890 Sat Feb 14 01:31:30 SAST 2009![]()
Explain
http://en.wikipedia.org/wiki/Unix_timeUnix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds. It is widely used not only on Unix-like operating systems but also in many other computing systems. It is neither a linear representation of time nor a true representation of UTC (though it is frequently mistaken for both) as the times it represents are UTC but it has no way of representing UTC leap seconds (e.g. 1998-12-31 23:59:60).
Unix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds. It is widely used not only on Unix-like operating systems but also in many other computing systems. It is neither a linear representation of time nor a true representation of UTC (though it is frequently mistaken for both) as the times it represents are UTC but it has no way of representing UTC leap seconds (e.g. 1998-12-31 23:59:60).