tldr/pages/common/zsh.md

30 lines
621 B
Markdown
Raw Normal View History

2016-02-19 16:53:19 +00:00
# zsh
> Z SHell, a Bash-compatible command-line interpreter.
> See also `histexpand` for history expansion.
> More information: <https://www.zsh.org>.
2016-02-19 16:53:19 +00:00
- Start an interactive shell session:
2016-02-19 16:53:19 +00:00
`zsh`
- Execute a command and then exit:
2016-02-19 16:53:19 +00:00
`zsh -c "{{command}}"`
2016-02-19 16:53:19 +00:00
- Execute a script:
2016-02-19 16:53:19 +00:00
`zsh {{path/to/script.zsh}}`
2016-02-19 16:53:19 +00:00
- Execute a script, printing each command before executing it:
2016-02-19 16:53:19 +00:00
`zsh --xtrace {{path/to/script.zsh}}`
- Start an interactive shell session in verbose mode, printing each command before executing it:
`zsh --verbose`
- Execute a specific command inside `zsh` with disabled glob patterns:
`noglob {{command}}`