1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 11:35:24 +02:00

Add page for zsh

This commit is contained in:
Bharadwaj Raju 2016-02-19 22:23:19 +05:30
parent bcbf7e35fd
commit 8f95eaa45d

20
pages/common/zsh.md Normal file
View file

@ -0,0 +1,20 @@
# 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}}`