19 Jul
2005
19 Jul
'05
6:22 p.m.
On Tuesday 19 July 2005 20:01, mario andre wrote:
Hi friends,
Somebody knows how to convert the unix time format to the utc?
You could use Perl:
perl -le 'print scalar gmtime($time)'
or, to get local time:
perl -le 'print scalar localtime($time)'
(fillin the unix timestamp for $time)
HTH Paul