To clear the history, type the following command:
history -cOR
rm ~/.bash_historyYou can add the command to your ~/.bash_logout so that history will get cleared when you logout:
echo 'history -c' >> ~/.bash_historyPrevent A Bash History File From Ever Being Saved
Add the following commands to ~/.bashrc file:echo 'unset HISTFILE' >> ~/.bashrc
echo 'export LESSHISTFILE="-"' >> ~/.bashrc
No comments:
Post a Comment