zsh, noglob: fix zsh, add/sync german translations (#21806)

Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
This commit is contained in:
mister-ben
2026-04-09 07:48:05 +02:00
committed by GitHub
parent 3a1ceca99b
commit 771b96a63f
3 changed files with 28 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
# noglob
> Führe Befehle in Zsh ohne Globbing aus (ohne Wildcard-Muster anzuwenden).
> Weitere Informationen: <https://manned.org/zshmisc>.
- Rufe eine URL ohne Anführungszeichen oder Escape-Sequenzen ab:
`noglob curl {{https://example.com?a=1}}`
- Öffne eine Datei, deren Name ein Sternchen enthält:
`noglob less {{*.txt}}`
+15 -8
View File
@@ -1,7 +1,6 @@
# zsh
> Z SHell.
> Mit `bash` und `sh` kompatible Eingabeaufforderung.
> Z SHell. Mit `bash` und `sh` kompatible Eingabeaufforderung.
> Siehe auch: `bash`, `!`, `^`.
> Weitere Informationen: <https://zsh.sourceforge.io/Doc/Release/Invocation.html#Invocation>.
@@ -11,20 +10,28 @@
- Führe Parameter als Befehl aus:
`zsh -c {{befehl}}`
`zsh -c "{{echo Hello world}}"`
- Führe Befehle aus einem Skript aus:
`zsh {{pfad/zu/skript}}`
`zsh {{pfad/zu/skript.zsh}}`
- Prüfe ein Skript nach Syntaxfehlern, ohne es auszuführen:
`zsh {{[-n|--no-exec]}} {{pfad/zu/skript.zsh}}`
- Führe Befehle von `stdin` aus:
`{{echo echo Hello World}} | zsh`
- Führe Befehle aus einem Skript aus und schreibe die Befehle in die Konsole:
`zsh --xtrace {{pfad/zu/skript}}`
`zsh {{[-x|--xtrace]}} {{pfad/zu/skript.zsh}}`
- Starte eine interaktive Eingabeaufforderung, in der jeder Befehl ausgegeben wird, bevor er ausgeführt wird:
`zsh --verbose`
`zsh {{[-v|--verbose]}}`
- Führe einen Befehl innerhalb von Zsh mit ausgeschalteten Glob-Mustern aus:
- Starte Zsh, ohne Nutzerkonfigurationen zu laden (z.B. `~/.zshrc`):
`noglob {{befehl}}`
`zsh {{[-f|--no-rcs]}}`
+1 -1
View File
@@ -22,7 +22,7 @@
- Execute specific commands from `stdin`:
`{{echo Hello world}} | zsh`
`{{echo echo Hello world}} | zsh`
- Execute a specific script, printing each command in the script before executing it: