2016-02-19 16:53:19 +00:00
|
|
|
# zsh
|
|
|
|
|
2021-04-04 21:07:13 +01:00
|
|
|
> Z SHell, a `bash` and `sh`-compatible command line interpreter.
|
|
|
|
> See also `histexpand` for history expansion.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://www.zsh.org>.
|
2016-02-19 16:53:19 +00:00
|
|
|
|
|
|
|
- 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}}`
|