You can clear your bash history like this:
#cat /dev/null > ~/.bash_history && history -c && exit or
#cat /dev/null > ~/.bash_history erases the content of the ~/.bash_history file.
history -c clears the current terminal history.
You can clear your bash history like this:
#cat /dev/null > ~/.bash_history && history -c && exit or
#cat /dev/null > ~/.bash_history erases the content of the ~/.bash_history file.
history -c clears the current terminal history.
1 comment
Thank you for this article