1
Fork 0
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-12-22 02:55:58 +00:00

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

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
```