How to view the bash_history for root? How to view the bash_history for root? unix unix

How to view the bash_history for root?


Here's the quick way:

sudo less /root/.bash_history


You can run the history command to see the current users history.


When you "sudo -s", you apparently get the .bash_history of the source account, because $HOME is unchanged.

Try setting $HOME to ~root before you sudo -s.