Files
tldr/pages/common/!.md
Darío Hereñú 686f4ef026 !: add Spanish translation, fix placeholder in description (#11451)
* !: add Spanish translation

* !: fix placeholder in description

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-11-11 21:12:46 +05:30

590 B

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}} !*