1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ksh.md

22 lines
347 B
Markdown
Raw Normal View History

2019-01-15 18:19:51 +01:00
# ksh
> Korn Shell.
> `bash` and `sh`-compatible command line interpreter.
2019-06-05 08:55:48 +01:00
> More information: <http://kornshell.com>.
2019-01-15 18:19:51 +01:00
- 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}}`