UPDATE: Unix Time
From: MARCELO ALONSO MONDRAGON (malonsom_at_villacero.com.mx)
Date: 05/26/03
- Previous message: Bona Craig: "C++ Compiler for Tru64 Unix"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Mon, 26 May 2003 08:40:31 -0600 To: tru64-unix-managers@ornl.gov
Thank you for their answers, but How could I make the inverse process?,
convert whatever date in human format to unix format.
In order to get the date in unix format, their answers were:
From: William H. Magill <magill@mcgillsociety.org>
#!/usr/bin/perl
#
print scalar(localtime($ARGV[0]));
print "\n";
From: Michael James Bradford <mjbr@tdc.dk>
#!/bin/perl
$now=localtime(<stdin>);
print $now,"\n"
If you call the script convert_time.pl, then you run it as follows:
$ echo "1049972098"|convert_time.pl
Thu Apr 10 12:54:58 2003
From: Martin Adolfsson <mad@netilium.org>
perl -e 'print time()."\n"'
And other answers more
Marcelo Alonso Mondragón
Soporte Técnico / Informática / SICARTSA
Una Empresa del Grupo Villacero
E-Mail: malonsom@villacero.com.mx
Internet: http://www.villacero.com.mx
- Previous message: Bona Craig: "C++ Compiler for Tru64 Unix"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|