InterviewSolution
Saved Bookmarks
| 1. |
What Can You Type At A Command Line To Determine Which Shell You Are Using? |
|
Answer» ECHO $SHELL-The name and path to the shell you are using is saved to the SHELL ENVIRONMENT variable. You can then use the echo command to PRINT out the VALUE of any variable by PRECEDING the variable’s name with $. Therefore, typing echo $SHELL will display the name of your shell. echo $SHELL-The name and path to the shell you are using is saved to the SHELL environment variable. You can then use the echo command to print out the value of any variable by preceding the variable’s name with $. Therefore, typing echo $SHELL will display the name of your shell. |
|