1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/zsh.md

21 lines
366 B
Markdown

# zsh
> Z SHell.
> `bash` and `sh`-compatible command line interpreter.
> More information: <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}}`