You can clear your bash history like this:
cat /dev/null > ~/.bash_history && history -c && exit
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
cat /dev/null > ~/.bash_history
erases the content of the
~/.bash_history
file.
history -c
clears the current terminal history.