ksh: add page (#2620)

italian
Štěpán Pešout 2019-01-15 18:19:51 +01:00 committed by Agniva De Sarker
parent 8973839f55
commit 9f41228b7a
1 changed files with 20 additions and 0 deletions

20
pages/common/ksh.md Normal file
View File

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