How to Set Bash as the Default Shell on Mac
Matt Cone January 15, 2021 Tutorials Mac Developer
Every new Mac uses the Z shell (Zsh) by default, but you can quickly and easily switch the default shell back to Bash. There are several reasons you might want to do this. For example, you may need to be using the bash shell to execute bash scripts on a Mac.
Here’s how to set Bash as the default shell on your Mac:
Open your Terminal application.
Type the following command and press Return:
chsh -s /bin/bash
Enter your account password when prompted.
That’s it! Your Mac will now use Bash as the default shell.
Switching Back to Zsh as Default
If you want to stop using the Bash shell, you can switch back to using Zsh as the default shell by using the following command:
chsh -s /bin/zsh
You Mac will once again use Zsh as the default shell.
Related Articles
Subscribe to our email newsletter
Sign up and get Macinstruct's tutorials delivered to your inbox. No spam, promise!