1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-02 01:34:34 +01:00
notes/docs/notes/shell/stop-saving-history.md
2024-02-13 23:16:21 +00:00

26 lines
241 B
Markdown

---
title: Stop saving bash history
emoji: 🤔
tags:
- Shell
modified: 2022-11-02
---
## Disable history for a given session
```shell
$ unset HISTFILE
```
or:
```shell
$ set +o history
```
## Clear history
```shell
$ history -c
```