1,234,567,890th second since UNIX epoch. Where will you be?
“At 11:31:30pm UTC on Feb 13, 2009, Unix time will reach 1,234,567,890. Where will you be at this momentous second?” - from Bell LabsSurely you would want to find out what time this second comes in your local time? Well, provided that your *nix system has perl installed you can run the following command in shell:
perl -e 'print scalar localtime(1234567890),"\n";'
Here in Finland this will not happen on Friday 13th but very soon after midnight on Saturday. More precisely at “Sat Feb 14 01:31:30 2009″, as was reported by the above line of perl code… I myself will most likely be high or sleeping at that very moment - where will you be?
P.S. See also: One of those magic times: On Friday the 13th! by Jon maddog Hall & The 1,234,567,890th second approacheth at Linux-Watch.Related posts
Tags: Linux/Unix

February 13th, 2009 at 2:38 pm
Or if you’ve got GNU date: “date -u -d ‘@1234567890′”
February 14th, 2009 at 2:33 am
[...] HackNBlog » Blog Archive » 1234567890th second since UNIX epoch … [...]
February 14th, 2009 at 3:29 pm
@Steve Parker
Thanks, though when I tried your command I got different result than with perl - however when leaving -u out of the command I got the correct result. This is how someone adviced (without -u that is) on maddogs writings comments too :)