...
Display the value of the $SHELL environment variable, which stores the pathname of the current shell.
Code Block | ||
---|---|---|
| ||
$ echo $SHELL /bin/bash |
List the available shells in the system. cat (concatenate) is a standard Linux utilities that concatenates and prints the content of a file to standard output. shells is the name of the file, and /etc/ is the pathname of the directory where this file is stored.
...