InterviewSolution
Saved Bookmarks
| 1. |
What are a shell in Unix and its types? |
|
Answer» SHELL is a program that gives us an interface between the Unix OS kernel and user. By this interfacing, the user can execute utilities and applications USING the shell. Each user gets a unique shell when he logs in or opens a console. The DIFFERENT shells are Bourne shell (sh), C shell (csh), the Korn shell (ksh), GNU Bourne-Again Shell (bash). |
|