2015-11-22 21:40:47 +00:00
|
|
|
# history
|
|
|
|
|
|
|
|
> Command Line history.
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Display the commands history list with line numbers:
|
2015-11-22 21:40:47 +00:00
|
|
|
|
|
|
|
`history`
|
|
|
|
|
2020-07-01 11:46:09 +01:00
|
|
|
- Display the last 20 commands:
|
|
|
|
|
|
|
|
`history {{20}}`
|
|
|
|
|
2016-03-15 18:12:27 +00:00
|
|
|
- Clear the commands history list (only for current `bash` shell):
|
2015-11-22 21:40:47 +00:00
|
|
|
|
|
|
|
`history -c`
|
2016-03-15 18:12:27 +00:00
|
|
|
|
2016-03-19 20:09:30 +00:00
|
|
|
- Overwrite history file with history of current `bash` shell (often combined with `history -c` to purge history):
|
2016-03-15 18:12:27 +00:00
|
|
|
|
|
|
|
`history -w`
|
2019-01-08 22:59:04 +00:00
|
|
|
|
|
|
|
- Delete the history entry at the specified offset:
|
|
|
|
|
|
|
|
`history -d {{offset}}`
|