» Linux » Examen sur Linux » Examen 201 : Advanced Administration » Section 1 » Question 13/20
13.What can you type at a command line to determine which shell you are using?
Answer: echo $SHELL

Explanation: The 'echo' command is used to echo a string to standard output. $shell is an environment variable that reflects the current shell in use. Therefore, the 'echo $shell' command will display the name and path of the shell you are using.

Reference: http://www.santafe.edu/projects/echo/how-to/node30.html

« Question 12 Question 14 »