Merge pull request #825 from matkoniecz/history

add explanation how to fully erase bash shell history
waldyrious/alt-syntax
Igor Shubovych 2016-03-19 19:43:01 +02:00
commit c79571b553
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`