September 2018
Beginner
186 pages
4h 30m
English
Even if it's not the shell that starts up when you log in, Bash may still be installed on your system, and you may still be able to change your login shell to it.
You might be able to start it by just typing bash:
$ bash
If you get output like command not found, you will probably need to install a Bash package specific to your system, or get your system administrator to do it for you. Consult your operating system's documentation to learn how to do this.
If you get a new prompt that looks like the Bash prompts in the previous section, you can then find the location of the bash program:
bash$ declare -p BASH BASH="/usr/local/bin/bash"
Depending on the system, you might then be able to change Bash to your login ...
Read now
Unlock full access