2015-11-22 23:40:47 +02:00
|
|
|
# history
|
|
|
|
|
2021-05-20 16:13:41 -04:00
|
|
|
> Command-line history.
|
2021-04-23 23:14:43 -03:00
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html>.
|
2015-11-22 23:40:47 +02:00
|
|
|
|
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`
|
|
|
|
|
2024-03-10 03:53:17 -03:00
|
|
|
- Display the last 20 commands (in Zsh it displays all commands starting from the 20th):
|
2020-07-01 12:46:09 +02:00
|
|
|
|
|
|
|
`history {{20}}`
|
|
|
|
|
2024-03-10 03:53:17 -03: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
|
|
|
|
2024-03-10 03:53:17 -03: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}}`
|