Skip to content

Latest commit

 

History

History
 
 

KSH

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Korn Shell (ksh)

Installation

Install the Korn Shell on Debian like systems with:

sudo apt install ksh

Run your Code

You can run your hello_world.ksh script with the following:

/usr/bin/ksh hello_world.ksh

Alternatively, you can make the script executable with:

chmod 744 hello_world.ksh

and then run it with:

./hello_world.ksh