Home > Blockchain >  Print the history for the last 10 Commands on the session on each log in to the shell
Print the history for the last 10 Commands on the session on each log in to the shell

Time:12-22

so I'm trying to print out the last 10 commands on the last session on each login, in the bash.bashrc i wrote this: echo "$(history 10)" but it didn't print anything

CodePudding user response:

Bash history is only loaded from file after .bashrc has completed.

You can force the loading of history and then output what you want by adding the following to your .bashrc file:

history -r
history 10
  • Related