Stop saving bash history

This commit is contained in:
Jake Howard 2022-11-02 11:32:24 +00:00
parent 498b21d2d1
commit 74f30480d5
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
---
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
```