LINUX BASH SHELL
|
|
|
|

| • Linux has a variety of different shells:
Bourne shell (sh), C shell (csh), Korn shell (ksh), TC shell (tcsh), Bourne Again shell (bash). |
• SHELL OPERATIONS: When a shell is invoked, either automatically during login or manually from a keyboard or script, it follows a preset sequence:
|
• To find out the full pathname of your current login shell is to type the following:
echo $SHELL /bin/bash full pathname of the bash shell. echo is the command to display or print SHELL is a variable $ is used to dereference the value of the variable
|