1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 04:17:58 +01:00
tldr/pages/common/zsh.md
2016-02-19 22:23:19 +05:30

323 B

zsh

Z SHell. bash and sh-compatible command line interpreter.

  • 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}}