mirror of https://github.com/CrimsonTome/tldr.git
22 lines
358 B
Markdown
22 lines
358 B
Markdown
# zsh
|
|
|
|
> Z SHell.
|
|
> `bash` and `sh`-compatible command line interpreter.
|
|
> Homepage: <https://www.zsh.org>.
|
|
|
|
- Start interactive command line interpreter:
|
|
|
|
`zsh`
|
|
|
|
- Execute command passed as parameter:
|
|
|
|
`zsh -c {{command}}`
|
|
|
|
- Run commands from file (script):
|
|
|
|
`zsh {{file}}`
|
|
|
|
- Run commands from file and print them as they are executed:
|
|
|
|
`zsh -x {{file}}`
|