mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 10:35:25 +02:00
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
This commit is contained in:
parent
42551edc3f
commit
9cc107138d
1 changed files with 5 additions and 1 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Reference in a new issue