2023-08-02 15:06:44 +01:00
|
|
|
# Exclamation mark
|
|
|
|
|
|
|
|
> Bash builtin to substitute with a command found in history.
|
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>.
|
|
|
|
|
2023-11-12 03:08:58 +00:00
|
|
|
- Substitute with the previous command and run it with `sudo`:
|
2023-08-02 15:06:44 +01:00
|
|
|
|
|
|
|
`sudo !!`
|
|
|
|
|
|
|
|
- Substitute with a command based on its line number found with `history`:
|
|
|
|
|
|
|
|
`!{{number}}`
|
|
|
|
|
2023-09-15 01:39:50 +01:00
|
|
|
- Substitute with a command that was used a specified number of lines back:
|
2023-08-02 15:06:44 +01:00
|
|
|
|
|
|
|
`!-{{number}}`
|
|
|
|
|
2023-11-11 15:42:46 +00:00
|
|
|
- Substitute with the most recent command that starts with a string:
|
2023-08-02 15:06:44 +01:00
|
|
|
|
|
|
|
`!{{string}}`
|
2023-09-25 19:07:36 +01:00
|
|
|
|
|
|
|
- Substitute with the arguments of the latest command:
|
|
|
|
|
|
|
|
`{{command}} !*`
|