Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Dec 1997 13:54:33 -0600 (CST)
From:      "Paul T. Root" <proot@horton.iaces.com>
To:        jal@thirdage.com (Jamie Lawrence)
Cc:        questions@freebsd.org
Subject:   Re: Converting epic time to human time?
Message-ID:  <199712181954.NAA10811@horton.iaces.com>
In-Reply-To: <3.0.3.32.19971218103158.00955e60@mail.thirdage.com> from Jamie Lawrence at "Dec 18, 97 10:31:58 am"

next in thread | previous in thread | raw e-mail | index | archive | help
In a previous message, Jamie Lawrence said:
> Does anyone know a quick way to convert, say, 881971099
> to a human readable time?

#!/usr/local/bin/perl
use Time::gmtime;
 $date_string = gmctime(881971099);
print $date_string, "\n\n";      
^D
Fri Dec 12 23:58:19 1997                

 
> Thanks.
> 
> -j
> 


-- 
Sir, I have a cunning plan... - Baldrick



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199712181954.NAA10811>