Find out your current shell name
printf "My current shell - %s\n" "$SHELL"To list all installed shells, run:
chsh -lAnd to set one as default for your user do:
chsh -s full-path-to-shellzsh
I like zsh.
printf "My current shell - %s\n" "$SHELL"chsh -lchsh -s full-path-to-shellI like zsh.