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:
parent
8973839f55
commit
9f41228b7a
1 changed files with 20 additions and 0 deletions
20
pages/common/ksh.md
Normal file
20
pages/common/ksh.md
Normal 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}}`
|
Loading…
Reference in a new issue