From 9f41228b7a98803f427995ab76ccb351245f5b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Pe=C5=A1out?= Date: Tue, 15 Jan 2019 18:19:51 +0100 Subject: [PATCH] ksh: add page (#2620) --- pages/common/ksh.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/ksh.md diff --git a/pages/common/ksh.md b/pages/common/ksh.md new file mode 100644 index 000000000..070e40f8a --- /dev/null +++ b/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}}`