1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 08:26:03 +02:00
tldr/pages/common/zsh.md
marchersimon 03819122c9
histexpand: add page (#5455)
Also add a reference to the new page in bash.md and zsh.md
2021-04-04 21:07:13 +01:00

21 lines
413 B
Markdown

# zsh
> Z SHell, a `bash` and `sh`-compatible command line interpreter.
> See also `histexpand` for history expansion.
> 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}}`