Sometimes it is very useful to delete / remove Bash history partially
or completely when log out. Here is my favourite methods howto log out
/ quit / exit Bash shell without saving Bash history.
Remove Only Current
Session Bash History and Leave Older History
Untouched
- Quit Bash Shell Without Saving History: Unset HISTFILE
- Quit Bash by Killing you Current Consolel Without Saving
History: Kill Console
- Quit Bash Shell Without Saving History: Clear History Option
- Set your Bash Shelll history to Zero(0): Set
HISTSIZE 0
Remove/Delete Bash History
Completely
- Quit Bash Shell Without Saving History: Delete HISTFILE and
Unset HISTFILE
#rm -f $HISTFILE && unset HISTFILE && exit
|
If you want make these commands more permanent then these commands
could be added on ~/.bash_logout file or used with aliases.
echo "alias nohistory='history -c && exit'" >> ~/.bash_logout
|
Tidak ada komentar:
Posting Komentar