1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 13:23:52 +01:00
notes/content/shell/stop-saving-history.md

241 B

title emoji tags modified
Stop saving bash history 🤔
Shell
2022-11-02

Disable history for a given session

$ unset HISTFILE

or:

$ set +o history

Clear history

$ history -c