!: add page (#10572)

pull/23/head
Managor 2023-08-02 17:06:44 +03:00 committed by GitHub
parent 7b54c62b5b
commit 3fa18a3106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/linux/!.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 specified lines back:
`!-{{number}}`
- Substitute with the most recent command that starts with `string`:
`!{{string}}`