To delete the bash history:
1. Delete the .bash_history file:
rm -rf ~/.bash_history2. Clear the current history stored in RAM:
history -cStop logging the bash histories
● Turn off bash history for all users
Append “unset HISTFILE” to /etc/profile:
echo "unset HISTFILE" >> /etc/profile
● Turn off bash history for a specific user
Append “unset HISTFILE” to /home/USER/.bash_profile:
echo "unset HISTFILE" >> /home/USER/.bash_profile