mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
347 B
347 B
ksh
Korn Shell.
bash
andsh
-compatible command line interpreter. More information: http://kornshell.com.
- 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}}