I know the 'history' command give me a list of the commands I have typed into the Unix terminal.

How do I see the command history for all of the users currently logged onto the system?

link|improve this question
Not programming related. I suggest you ask on superuser.com. – Troubadour Aug 19 '10 at 9:47
There is no standard-tool to get the information, so I think it is programming (at least in the sense of 'scripting') - related. – IanH Aug 19 '10 at 9:58
feedback

migrated from stackoverflow.com Aug 21 '10 at 4:06

This question came from our site for professional and enthusiast programmers.

1 Answer

You get a list of currently logged in users in /var/run/utmp (see man 5 utmp). The history is stored in ~/.history or for bash user in ~/.bash_history. Other shells may use other history files, so it's not that easy to get really all information.

Furthermore, if a user is logged in multiple times, the .bash_history file is not always reliable.

To read the utmp file there is a "frontend" called who, so you could also write a shell-script to iterate over the currently logged in users.

link|improve this answer
1  
The current history is held in memory. The history file only shows what was written using history -a or similar or when a user exits the shell. – Dennis Williamson Aug 19 '10 at 15:31
feedback

Your Answer

 
or
required, but never shown