!: move to common (#10720)

This commit is contained in:
pixel
2023-09-15 06:02:06 +02:00
committed by GitHub
parent 43d8bf8948
commit 681f8f0d17

20
pages/common/!.md Normal file
View File

@@ -0,0 +1,20 @@
# 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>.
- Substitute with the previous command and run it with sudo:
`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:
`!-{{number}}`
- Substitute with the most recent command that starts with `string`:
`!{{string}}`