1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 22:44:56 +02:00
tldr/pages/common/ksh.md
2019-01-15 22:49:51 +05:30

20 lines
303 B
Markdown

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