瀏覽代碼

ksh: add page (#2620)

Štěpán Pešout 6 年之前
父節點
當前提交
9f41228b7a
共有 1 個文件被更改,包括 20 次插入0 次删除
  1. 20 0
      pages/common/ksh.md

+ 20 - 0
pages/common/ksh.md

@@ -0,0 +1,20 @@
+# ksh
+
+> Korn Shell.
+> `bash` and `sh`-compatible command line interpreter.
+
+- Start interactive command line interpreter:
+
+`ksh`
+
+- Execute a command:
+
+`ksh -c {{command}}`
+
+- Run commands from a file:
+
+`ksh {{file}}`
+
+- Run commands from a file and print them as they are executed:
+
+`ksh -x {{file}}`