!: add German translation (#10840)

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Magrid <magrid0@proton.me>
Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com>
Co-authored-by: Reinhart Previano Koentjoro <reinhart@reinhart1010.id>
Co-authored-by: HoJeong Im <39ghwjd@naver.com>
Co-authored-by: Rodrigo Stuchi <rod-stuchi@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Darío Hereñú <magallania@gmail.com>
Co-authored-by: H.Han@Fedora,TUF <harryhan912@gmail.com>
Co-authored-by: Harry Han <s2162783@ed.ac.uk>
pull/23/head
Sascha Hahne 2023-11-06 21:32:02 +01:00 committed by GitHub
parent c91fd38d59
commit d2d5dbb6c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages.de/common/!.md Normal file
View File

@ -0,0 +1,24 @@
# Exclamation mark
> Ein in Bash integriertes Kommando, welches durch einen Befehl aus dem Befehlsverlauf ersetzt wird.
> Mehr Informationen: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>.
- Ersetze '!!' durch den vorherigen Befehl und führe ihn mit sudo aus:
`sudo !!`
- Führe den Befehl Nummer n aus. Die Nummer eines Befehls kann mit `{{history}}` herausgefunden werden:
`!{{n}}`
- Führe den n't letzten ausgeführten Befehl aus:
`!-{{n}}`
- Führe den letzten Befehl aus, der mit `{{zeichenkette}}` begann:
`!{{zeichenkette}}`
- Ersetze durch die Argumente des letzten Befehls:
`{{befehl}} !*`