How To: Find Out KSH ( Korn Shell ) Version on Linux or Unix-like system
You can find out the version of the Korn shell (ksh) on a Linux or Unix-like system using the following command: ksh -c ‘echo $KSH_VERSION’ This command runs a simple echo command in ksh, and uses the KSH_VERSION environment variable to print the version of the shell. Alternatively, you can use the following command to … Read more