mirror of https://github.com/CrimsonTome/tldr.git
22 lines
404 B
Markdown
22 lines
404 B
Markdown
# zsh
|
|
|
|
> Z SHell.
|
|
> Mit `bash` und `sh` kompatible Eingabeaufforderung.
|
|
> Mehr Informationen: <https://www.zsh.org>.
|
|
|
|
- Starte eine interaktive Eingabeaufforderung:
|
|
|
|
`zsh`
|
|
|
|
- Führe Parameter als Befehl aus:
|
|
|
|
`zsh -c {{befehl}}`
|
|
|
|
- Führe Befehle aus einem Skript aus:
|
|
|
|
`zsh {{pfad/zu/skript}}`
|
|
|
|
- Führe Befehle aus einem Skript aus und schreibe die Befehle in die Konsole:
|
|
|
|
`zsh -x {{pfad/zu/skript}}`
|