Check which shell you are in.
echo $SHELL
Check shells available for use
cat /etc/shells
Change shell the long way
chsh --shell /bin/bash
Change shell the short way
# for bash
chsh -s /bin/bash
# for fish
chsh -s /usr/local/bin/fish
Check which shell you are in.
echo $SHELL
Check shells available for use
cat /etc/shells
Change shell the long way
chsh --shell /bin/bash
Change shell the short way
# for bash
chsh -s /bin/bash
# for fish
chsh -s /usr/local/bin/fish