I read that terminal is nothing but shell, and Unix provides different flavors of shells:
- Bourne shell (sh)
- C shell (csh)
- TC shell (tcsh)
- Korn shell (ksh)
- Bourne Again shell (bash)
Questions:
- When I open a terminal window, which shell is opened by default?
- How do I check how many shells are installed?
- How do I change the shell used from my account?
You can type the following command in your terminal to see which shell you are using:
The result will look something similar to the below if you are using the bash (Bourne Again Shell) terminal:
To find the shell you have on the default environment you can check the value of the
SHELL
environment variable:To find the current shell instance, look for the process (shell) having the PID of the current shell instance.
To find the PID of the current instance of shell:
Now to find the process having the PID:
Putting it together:
$SHELL
gives you the default shell.$0
gives you the current shell.For example: I have bash as my default shell, which I use for my Terminal App. But for my iTerm2 app, I use the command as the window opens:
/bin/ksh
.So my
$0
gives me/bin/ksh
on iTerm2.$SHELL
gives me/bin/bash
on iTerm2.$0
,$SHELL
gives me/bin/bash
on TerminalThe other answers tend to be using shell specific features, but we are trying to discover which shell we are using, so they assume the answer to the problem. For example none of the answers will work on fish.
Instead use the $$ syntax in an invocation of sh, but then we are looking for the PPID not the PID. Use the PPID to find the cmd.
Thanks for improvement @muru
To know which is the default shell for your user, you can run:
For example if you're using Bash you should get the following output:
If you didn't change any configuration it should be Bash since Bash it's the default shell on Ubuntu.
The original post asked three questions. The answers given do cover the first question, "When I open a terminal window, which shell is opened by default?" They also answer a question which was NOT asked, namely "How can I find out which shell is currently running in the terminal?" However, as far as I can see nobody has answered either the second or third questions originally asked, namely "How do I check how many shells are installed?" and "How do I change the shell used from my account?"
To answer "How do I check how many shells are installed?" the following command will list all the available shells:
For example, on a default installation of Ubuntu 18.10 this gives:
However, by default sh is a symbolic link to dash, while rbash links to bash with the option -r ("restricted bash") so there are actually only two shells, not four as the above list suggests. The following command will show you whether any of the listed shells are in fact symbolic links, and if so where they link to: ls -l /bin
Now for the question "How do I change the shell used from my account?" Assuming this means "How do I permanently change the default shell that a terminal will use", there is an answer here.
To address your third question, "How do I change the shell used from my account?", the answer is to use
chsh
.There are two modes:
From Changing Shells - Changing your login shell which is permanent, and paraphrasing it slightly:
You may not want to know the current shell's name (e.g.
-bash
,bash
,zsh
, etc., fromecho $0
), nor default shell's executable path (fromecho $SHELL
), but rather the current shell's executable path (especially useful e.g. if you have more than one version of Bash installed).To do this you can use
lsof -p "$$"
or with some extra coding to extract just the required info:Example output for Bash installed via Homebrew:
or for Zsh:
The above is different from
echo $SHELL
, both because the above is for the shell which is currently running rather than the user's default shell, and also because the above gives the executable after any symlinks have been expanded. E.g. for the same Bash install as above,echo $SHELL
gives/usr/local/bin/bash
.EDIT: If you need to allow for possible space characters in the shell's path, use
lsof -p "$$" | grep -m 1 txt | xargs -n 1 | tail -n +9 | xargs
instead.In one of the servers I connect to, the login shell is
/bin/sh
which is a symlink to/bin/bash
Most answers here will give
sh
, which would make the OP consider it's Bourne shell and not GNU bash, except this one that gives/bin/bash
Another option that works for this case is: