ksh – POFTUT

Linux /bin/bash Shell and Script Tutorial

Linux Bash shell is the most popular shell. /bin/bash is the path and executable of the Bash shell. /bin/bash is a binary that is used in different ways to run and execute commands and scripts. Script File Interpreter #!/bin/bash In Linux and opensource world script files are very important. There are different types of scripting languages … Read more

Difference Between Korn Shell (ksh) and Bash

Bash is very popular Linux and Unix shell used system administrators. Even most of the users do not know that they are using bash shell because of it is provided by default in the operating system. There are different shell types supported by Linux, Unix and BSD. Korn shell is another but less popular shell. … Read more

What Is Kornshell or ksh?

Linux and Unix provides different flavors of command line interface. bashis the most popular and use one. But we have alternatives too. kshor Korn Shell is one of them. Kornshell is mainly developed for shell based application development. ksh provides better performance for shell script. Install Kornshell We can install Kornshell for most of the Linux, … Read more

What is Dash / Shell / sh and How To Use It?

Linux provides a lot of different type of shells. There are shells like bash, ksh, csh. But what non of them exist in a Linux or Unix system. The default shell for Linux and Unix systems is sh . This shell is called also dash because of its maintainers those works for Debian. We will call … Read more

How To Get Shell Type and Version In Linux?

While using remote sessions we may need to know the type and version of the remote shell. Bash is popular but there may be different shells like sh, csh, ksh etc. Using $SHELL Variable Shells provide environment variables to give information about the shell and the environment. $SHELLenvironment variable can be used to get current … Read more