The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > AIX
Google UNIX.COM


AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Script to convert GMT to Asia/Hong Kong time xejatt Shell Programming and Scripting 5 03-19-2008 12:34 PM
Convert milliseconds to standard time chiru_h Shell Programming and Scripting 1 07-19-2007 10:45 AM
how to convert epoch time to readible format? cin2000 Shell Programming and Scripting 11 12-19-2005 03:14 PM
Convert UTC time to Date GNMIKE Shell Programming and Scripting 8 10-19-2005 11:43 PM
Convert from standard epoch time from a shell script? LordJezo Shell Programming and Scripting 4 09-18-2005 08:48 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #8 (permalink)  
Old 05-20-2008
Registered User
 

Join Date: Oct 2006
Location: Belgium
Posts: 171
Stumble this Post!
Quote:
Originally Posted by b_manu78 View Post
If i give perl -le 'print scalar localtime(1211381313);' , then the output is correct...Wed May 21 11:18:33 2008.
Are you sure that it's the correct date? When I convert it my way, it give me:

GNU Awk 3.1.5
$ TZ=UTC awk 'BEGIN {print strftime("%Y-%m-%d %T", 1211381313)}'
> 2008-05-21 14:48:33

date (GNU coreutils) 5.97
$ date --utc --date "1970-01-01 1211381313 sec" "+%Y-%m-%d %T"
> 2008-05-21 14:48:33
Reply With Quote
Forum Sponsor
  #9 (permalink)  
Old 05-20-2008
era era is offline
Herder of Useless Cats
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,650
Stumble this Post!
You are not passing $lastlog1 to Perl correctly, so it's effectively doing localtime(0). (The date it prints is Jan 1 1970 UTC 00:00:00 converted to your local time zone.)

Code:
perl -le 'print scalar localtime(shift)' $lastlog1
If you are using awk anyway, the awk solution ripat posted would seem ideal.

Code:
lsuser -a time_last_login root|awk -F= '{print strftime("%Y-%m-%d %T",$2)}'
Reply With Quote
  #10 (permalink)  
Old 05-21-2008
Bughunter Extraordinaire
 

Join Date: May 2005
Location: In the leftmost byte of /dev/kmem
Posts: 1,099
Stumble this Post!
Just for the record: the problem is here:

Quote:
Originally Posted by b_manu78 View Post
perl -le 'print scalar localtime($lastlog1);'
You try to expand variable ($lastlog1) inside single quotes. To prevent special characters like "$" from being interpreted by the shell is exactly what single quotes have been invented for.

The line will probably work writing it that way:

Code:
perl -le 'print scalar localtime('"$lastlog1"');'
I hope this helps.

bakunin
Reply With Quote
  #11 (permalink)  
Old 3 Weeks Ago
babar.sattar's Avatar
Registered User
 

Join Date: Sep 2008
Location: Pakistan
Posts: 1
Stumble this Post!
Smile solution

Quote:
Originally Posted by b_manu78 View Post
Hi Friends,

I see the last login time as

time_last_login=1210762918

How to convert this to standard format.

I believe there is a command, I am not able to recollect it.

Thanks in advance
do this.....

perl -le 'print scalar localtime('$a');'

and it returns

Wed May 21 07:48:33 2008
Reply With Quote
Google The UNIX and Linux Forums
Reply

Tags
perl localtime

Thread Tools
Display Modes




All times are GMT -7. The time now is 02:18 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0