Types of Shells in Linux like sh, csh, ksh, bash, tsh, zsh
SHELL is an interface between the user and an operating system. When the user logs in, Linux OS starts a shell for user then shell communicates with the kernel and interprets user commands. Kernel controls all essential computer operations, and provides the restriction to hardware access, coordinates all executing utilities, and manages Resources between process. Using kernel only user can access utilities provided by operating system. Types of Shell:- 1.) The Bourne Shell ( sh ) - It was written by Steve Bourne at AT&T Bell Labs. It is the original UNIX shell. It is faster and more preferred by the Unix/Linux users.It is default shell for Solaris OS. It doesn't support advanced features like aliases, command history and built-in arithmetic expressions. In Bourne shell, Command full-path name is /bin/sh and /sbin/sh, Non-root user default prompt is $, Root user default prompt is #. 2.) The C Shell (csh) was created by Bill Joy at the University of Califo...