mirror of https://github.com/CrimsonTome/tldr.git
22 lines
373 B
Markdown
22 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}}`
|