mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-20 17:01:57 +00:00
Update cheatsheets
This commit is contained in:
29
!
Normal file
29
!
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 a string:
|
||||
|
||||
`!{{string}}`
|
||||
|
||||
- Substitute with the arguments of the latest command:
|
||||
|
||||
`{{command}} !*`
|
||||
Reference in New Issue
Block a user