Skip to main content

Change Terminal Shell to the Bash Shell

Change Terminal Shell to the Bash Shell

This is to change the current user (with sudo privileges) to the bash shell.

sudo chsh -s /bin/bash $(whoami)

Change a user (not current user) to use the bash shell.

sudo chsh -s /bin/bash $(username)