mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-29 04:21:03 +08:00
zsh, noglob: fix zsh, add/sync german translations (#21806)
Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
This commit is contained in:
@@ -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
@@ -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
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user