Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Alan Bennett said:I don't mind people who aren't what they seem. I just wish they'd make their mind up.
lsuser -a time_last_login ALL
root time_last_login=1159187939
#!/bin/perl -w
use strict;
foreach ( `lsuser -a time_last_login ALL` )
{
/^(\w+)\s+time_last_login=(\d+)/ and do
{
print "User $1 last logged in at ";
print scalar localtime $2;
print "\n";
next;
};
chomp;
print "$_ has never logged in\n";
}