mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
21 lines
373 B
Markdown
21 lines
373 B
Markdown
# zsh
|
|
|
|
> Z SHell.
|
|
> Mit `bash` und `sh` kompatible Eingabeaufforderung.
|
|
> Mehr Informationen: <https://www.zsh.org>.
|
|
|
|
- Starte interaktive Eingabeaufforderung:
|
|
|
|
`zsh`
|
|
|
|
- Führe Parameter als Befehl aus:
|
|
|
|
`zsh -c {{befehl}}`
|
|
|
|
- Führe Befehle aus datei aus (Script):
|
|
|
|
`zsh {{datei}}`
|
|
|
|
- Führe Befehle aus Datei aus und schreibe die Befehle zur Konsole:
|
|
|
|
`zsh -x {{datei}}`
|