ksh
TLDR
Start Korn shell
$ ksh
Run script$ ksh [script.ksh]
Run command$ ksh -c "[command]"
Login shell$ ksh -l
Restricted shell$ ksh -r
POSIX mode$ ksh -o posix
SYNOPSIS
ksh [options] [script] [args...]
DESCRIPTION
ksh is the Korn shell, combining features of sh and csh. It provides advanced scripting with interactive editing.
The shell supports command history, job control, and aliases. ksh93 is the most common version.
ksh is the Korn shell.
PARAMETERS
SCRIPT
Script file to execute.-c CMD
Execute command string.-l
Login shell.-r
Restricted shell.-o OPTION
Set shell option.-i
Interactive shell.--help
Display help information.
CAVEATS
Multiple implementations exist. Different from bash in subtle ways. POSIX compatible.
HISTORY
The Korn shell was created by David Korn at Bell Labs in the 1980s, influencing many modern shells.


