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