histexpand: add page (#5455)

Also add a reference to the new page in bash.md and zsh.md
manned-org
marchersimon 2021-04-04 22:07:13 +02:00 committed by GitHub
parent ba603ca6c3
commit 03819122c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# bash
> Bourne-Again SHell.
> `sh`-compatible command line interpreter.
> Bourne-Again SHell, an `sh`-compatible command line interpreter.
> See also `histexpand` for history expansion.
> More information: <https://gnu.org/software/bash>.
- Start interactive shell:

View File

@ -0,0 +1,36 @@
# history expansion
> Reuse and expand the shell history in bash or zsh.
> More information: <https://www.gnu.org/software/bash/manual/html_node/History-Interaction.html>.
- Run the previous command:
`!!`
- Run the previous command as root:
`sudo !!`
- Run a command with the last argument of the previous command:
`{{command}} !$`
- Run a command with the first argument of the previous command:
`{{command}} !^`
- Run the command `n` lines back in the history:
`!-{{n}}`
- Run the most recent command starting with `string`:
`!{{string}}`
- Run the previous command, replacing `string1` with `string2`:
`^{{string1}}^{{string2}}^`
- Perform a history expansion, but print the command that would be run instead of actually running it:
`{{!-n}}:p`

View File

@ -1,7 +1,7 @@
# zsh
> Z SHell.
> `bash` and `sh`-compatible command line interpreter.
> Z SHell, a `bash` and `sh`-compatible command line interpreter.
> See also `histexpand` for history expansion.
> More information: <https://www.zsh.org>.
- Start interactive command line interpreter: