O especificado em sua linha em /etc/passwd
(é uma linha separada por :
e o shell é o final).
Por exemplo, meu:
chris:x:1000:1000:Chris,,,:/home/chris:/bin/bash
Aqui está /bin/bash
(o padrão do Ubuntu)
Você também pode usar chsh
:
$ chsh
Password:
Changing the login shell for chris
Enter the new value, or press ENTER for the default
Login Shell [/bin/bash]:
Isso está me dizendo que meu shell é /bin/bash
e me permite alterá-lo.
Finalmente, echo $SHELL
fará o mesmo:
$ echo $SHELL
/bin/bash