To learn last login date


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting To learn last login date
# 1  
Old 11-22-2015
To learn last login date

Hello,

HTML Code:
[root@server ~]# last| grep -v "root" | head -1
evam     pts/4        10.16.241.217    Fri Nov 20 10:48    gone - no logout
I can see last date without year. But I want to learn year of the last login.

HTML Code:
[root@server ~]# last| grep -v "root" | head -1 | awk '{print$4" "$5" "$6" "$7 }'
Fri Nov 20 10:48
How can I understand year of last login?

Best regards,
Moderator's Comments:
Mod Comment Please use CODE tags (not ICODE tags) when displaying full-line and multi-line sample input, sample output, and code segments.

Last edited by getrue; 11-23-2015 at 02:47 AM.. Reason: Change ICODE tags to CODE tags.
# 2  
Old 11-22-2015
Please, try last -F
# 3  
Old 11-23-2015
thanks dud.

#last -F working on Linux but it doesn't work on Solaris, HP-UX and IBM-AIX

HTML Code:
# last -F| grep -v "root" | head -1 | awk '{print$4" "$5" "$6" "$7" "$8}'
Thu Nov 19 11:27:54 2015
Is there any alternative solution?
# 4  
Old 11-23-2015
*nix timestamps are printed with time but without year if occurred within the last 6 months. Beyond that, year replaces the time.
# 5  
Old 11-23-2015
SysV Unix does not store the year in wtmp.
Most if not all Unix vendors have migrated to own extended wtmp files, named wtmpx or wtmps.
When adapting the last command, some vendors added new non-standard options.
Here is a portable script that makes some guesses and tries to compute the missing year:
Code:
last | PATH=/usr/xpg4/bin:/bin:/usr/bin awk '
BEGIN {
m["Jan"]=1
m["Feb"]=2
m["Mar"]=3
m["Apr"]=4
m["May"]=5
m["Jun"]=6
m["Jul"]=7
m["Aug"]=8
m["Sep"]=9
m["Oct"]=10
m["Nov"]=11
m["Dec"]=12
}
{
for (i=4;i<NF;i++) {
  if (($(i-1) in m) && $i~/^[0-9]?[0-9]$/ && $(i+1)~/^[0-9]/) {
    if ((m[$(i-1)]>pm || m[$(i-1)]==pm && $i>pday) && NR>1) year--
    pm=m[$(i-1)]; pday=$i
    $i=$i " " year
    break
  }
}
print
}' year=`date +%Y`

This User Gave Thanks to MadeInGermany For This Post:
# 6  
Old 11-23-2015
Solaris:

Code:
lastlog

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Last login date

i need to know, for all users in /etc/passwords, when their last login was including the year. is this kept as one record per person anywhere? I believe that WTMPX, keeps transactions of login and logout, but i just need the last time including people who never have logged in. i know that... (2 Replies)
Discussion started by: neil lehrer
2 Replies

2. Solaris

error message rmclomv ... SC Login Failure for user Please login:

Hello World ~ HW : SUN Fire V240 OS : Solaris 8 Error message prompts 'rmclomv ... SC login failure ...' on terminal. and Error Message prompts continually 'SC Login Failure for user Please login:' on Single Mode(init S) The System is in normal operation, though In case of rain, Can... (1 Reply)
Discussion started by: lifegeek
1 Replies

3. UNIX for Dummies Questions & Answers

How to do a login time and date list of users never logged on?

Hello, I'm trying to do a list of user that never connected to a couple of servers. I want to do a diff between the servers lists, and print out only the users that never has logged on each server. Here my first step : SERVER01: # finger `egrep -v -e "^\s*#" /etc/passwd | awk '{ print $1 }' |... (4 Replies)
Discussion started by: gogol_bordello
4 Replies

4. UNIX for Dummies Questions & Answers

script to write the last login date and time

I want to make a script to write me in a file the date(format 16-12-2008) and hour(format 15:12:21) of the last login in the system; what can i add to the <last> command in order to be suitable? (4 Replies)
Discussion started by: kalimat
4 Replies

5. Web Development

APACHE: Tie in Web Page login with server login

Hello, I have created a web page on a server using apache and added .htaccess and .htpasswd in the folder for authentification. I was wondering if there was anyway to tie-in the login for this page with the login used to logon to the server. i.e. the same login info. is used for both,... (2 Replies)
Discussion started by: WhotheWhat
2 Replies

6. UNIX for Dummies Questions & Answers

last login date and time for all users

I need a command that will list all the users and their last login date & time. I was trying the last command and the who command, but can't get exactly what I need. I just need the output to be user name and last login date . Thanks for your help! (3 Replies)
Discussion started by: igidttam
3 Replies

7. UNIX for Dummies Questions & Answers

Last user login date

I have been asked to create a report of when users last logged into an AIX box. Upon login, this information appears to be available but I have not located it yet. Any help? Thanks! (2 Replies)
Discussion started by: JTeter
2 Replies

8. Shell Programming and Scripting

Collecting & Displaying of Last User ID and Date of Last Login

Hi, I needed to write a script to "Collect and Display the Last User ID and Date of Last Login". The requirement is: When a workstation stops reporting it could be for many reasons. If we know the last person who logged in before the workstation came down, then we can contact the last... (1 Reply)
Discussion started by: amittal
1 Replies

9. UNIX for Dummies Questions & Answers

Collecting & Displaying of Last User ID and Date of Last Login

Hi, I needed to write a script to "Collect and Display the Last User ID and Date of Last Login". The requirement is: When a workstation stops reporting it could be for many reasons. If we know the last person who logged in before the workstation came down, then we can contact the last... (1 Reply)
Discussion started by: amittal
1 Replies

10. UNIX for Dummies Questions & Answers

Script to display last login date/time?

I was wondering if anyone had a script that would display the last time a user logged into a particular machine. I know about the "last" command, but it gives too much info.... I just wanted to know the last time a user used his/her id. ANy help would be greatly appreciated. Ryan (3 Replies)
Discussion started by: ryaneverett5
3 Replies
Login or Register to Ask a Question