add explanation how to fully erase bash shell history

based on http://unix.stackexchange.com/questions/203290/how-do-i-clear-the-terminal-history/203295#203295
waldyrious/alt-syntax
Mateusz Konieczny 2016-03-15 19:12:27 +01:00
parent 42551edc3f
commit 9cc107138d
1 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,10 @@
`history`
- Clear the commands history list (only for `bash`):
- Clear the commands history list (only for current `bash` shell):
`history -c`
- Overwrite history file with history of current `bash` shell (typically combined with `history -c` to completely erase history):
`history -w`