pages*: fix Bash, Zsh and fish names (#12481)

This commit is contained in:
Vitor Henrique
2024-03-10 03:53:17 -03:00
committed by GitHub
parent 38de1af697
commit ffa4be3e7a
47 changed files with 63 additions and 63 deletions

View File

@@ -7,15 +7,15 @@
`history`
- Display the last 20 commands (in `zsh` it displays all commands starting from the 20th):
- Display the last 20 commands (in Zsh it displays all commands starting from the 20th):
`history {{20}}`
- Clear the commands history list (only for current `bash` shell):
- Clear the commands history list (only for current Bash shell):
`history -c`
- Overwrite history file with history of current `bash` shell (often combined with `history -c` to purge history):
- Overwrite history file with history of current Bash shell (often combined with `history -c` to purge history):
`history -w`