How do I know if ksh is installed on Linux?
How do I know if ksh is installed on Linux? To get ksh version open a command-line terminal (select Applications > Accessories > Terminal), and then type the following command: ksh –version. echo ${.sh.version} echo $KSH_VERSION. strings /bin/ksh | grep Version | tail -2. #!/bin/ksh if whence -a whence > /dev/null; then echo “Good. What […]