1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 00:17:56 +01:00

ksh: add page (#2620)

This commit is contained in:
Štěpán Pešout 2019-01-15 18:19:51 +01:00 committed by Agniva De Sarker
parent 8973839f55
commit 9f41228b7a

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