1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/!.md

37 lines
841 B
Markdown
Raw Normal View History

2023-08-02 17:06:44 +03:00
# Exclamation mark
2025-03-07 14:06:17 +02:00
> Reuse and expand the shell history in `sh`, Bash, Zsh, `rbash` and `ksh`.
> More information: <https://gnu.org/software/bash/manual/bash.html#Event-Designators>.
2023-08-02 17:06:44 +03:00
- Substitute with the previous command and run it with `sudo`:
2023-08-02 17:06:44 +03:00
`sudo !!`
- Substitute with a command based on its line number found with `history`:
`!{{number}}`
- Substitute with a command that was used a specified number of lines back:
2023-08-02 17:06:44 +03:00
`!-{{number}}`
- Substitute with the most recent command that starts with a string:
2023-08-02 17:06:44 +03:00
`!{{string}}`
- Substitute with the arguments of the latest command:
`{{command}} !*`
2024-02-26 19:36:15 +02:00
- Substitute with the last argument of the latest command:
`{{command}} !$`
- Substitute with the last command but without the last argument:
`!:-`
- Print last command that starts with a string without executing it:
`!{{string}}:p`