瀏覽代碼

Add page for zsh

Bharadwaj Raju 9 年之前
父節點
當前提交
8f95eaa45d
共有 1 個文件被更改,包括 20 次插入0 次删除
  1. 20 0
      pages/common/zsh.md

+ 20 - 0
pages/common/zsh.md

@@ -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}}`