1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 06:02:18 +02:00

zsh: add Chinese translation

This commit is contained in:
KsRyY 2019-08-15 13:56:24 +08:00 committed by Starbeamrainbowlabs
parent 0ceaa59cf2
commit a09153b919

21
pages.zh/common/zsh.md Normal file
View file

@ -0,0 +1,21 @@
# zsh
> Z SHell.
> 与 `bash``sh` 兼容的命令行解释器.
> 更多信息: <https://www.zsh.org>.
- 启动交互式解释器:
`zsh`
- 执行从参数传入的命令:
`zsh -c {{command}}`
- 从文件执行命令 (脚本):
`zsh {{file}}`
- 从文件执行命令并将执行过的命令打印到终端:
`zsh -x {{file}}`