How to switch back to bash in Terminal on macOS Catalina

The default shell on macOS Catalina has changed from Bash to Zsh. You have to run a command to actually make the change and many think that Zsh is better. If you’ve made the switch and want to change back to Bash as the default shell whenever you open Terminal, it’s an easy change to make. Here’s how you can switch back to bash in Terminal.

how to switch back to bash in terminal on macos catalina How to switch back to bash in Terminal on macOS Catalina

Switch back to bash in Terminal

Open the Terminal app and on the menu bar select the Terminal menu item. From the menu, select Preferences. On the Preferences window, go to the General tab. There’s an option called ‘Shells open with’. Select ‘Command (complete path):’. In the field below it, enter the following;

/bin/bash

how to switch back to bash in terminal on macos catalina 10 How to switch back to bash in Terminal on macOS Catalina

Quit Terminal and open it again. Terminal will now always open in Bash.

Change default shell to bash

The previous section changes which shell the Terminal opens with however it doesn’t actually change the default shell back to bash. It has more or less the same effect but if you want to change the default shell back to bash, run the following command in Terminal. You will have to enter your password.

chsh -s /bin/bash

how to switch back to bash in terminal on macos catalina 11 How to switch back to bash in Terminal on macOS Catalina

After this command, you can leave the option in the Terminal preferences set to ‘Default login shell’ under the ‘Shells open with’ option.

Once you update to Catalina, there’s no removing Zsh from the system. Since you can change the shell back to Bash, it doesn’t matter much. The only downside of changing back to Bash is that each time you open a new Terminal window, there will be a message at the top telling you to switch to Zsh and giving you the command to make the switch.

As for which shell you should use, it’s really up to you. There are other shells besides Bash and Zsh available on macOS. If you want to view a list of all the shells that are available run the following command in Terminal.

cat /etc/shells

After that, you can choose any one of the shells and use them either as the shell that Terminal uses or change the default shell. The command is the same except you have to change ‘bin/bash’ to whichever shell you want to set as the default.

chsh -s /bin/bash

If you want to switch to Csh, you’d run the following command;

chsh -s /bin/csh

Likewise, to change the shell that it opens to without changing the default shell, enter this in Terminal’s preferences.

/bin/csh

Both changes are easy to make.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.