
If you open the terminal after upgrading macOS to Catalina, Big Sur, or Monterey, you would see something like this when you move to the bash from Zsh or other shells like csh, dash, ksh, sh, tcsh.
The default interactive shell is now zsh
To update your account to use zsh, please run `chsh -s /bin/zsh\`.
For more details, please visit https://support.apple.com/kb/HT208050
If you were using Mojave or below, Bash was the default shell, from Catalina onwards zsh (Z shell) is the default shell.
⛏️ Follow https://support.apple.com/kb/HT208050 to change the default shell other than zsh.
If you want to make bash the default command-line shell for macOS, you can do so by following the below steps,
- Click on the apple Logo on the menu bar ie.
- Choose System Preferences... menu option,
- Search for Users & Group,
- Click on the lock you see at the Botton left and enter your account name and password, or use fingerprint unlock,
- Do Control-click on your username and select Advanced Options,
- From the dropdown choose the shell your want to use and click OK.
How to suppress the message: "The default interactive shell is now zsh"
If you want to suppress this warning message every time that you move to any other prompt, you need to set the variable bash silence deprecation warning to a value of 1. i.e BASH_SILENCE_DEPRECATION_WARNING=1. You can do that by running the below command in the Terminal.
export BASH_SILENCE_DEPRECATION_WARNING=1
Example:
code2care@mac ~ % bash
The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
bash-3.2$ zsh
code2care@mac ~ % export BASH_SILENCE_DEPRECATION_WARNING=1
code2care@mac ~ % bash
bash-3.2$
Note as this setting will get terminated as soon as to close your terminal, it is better to set this in the profile of zsh shell.
- Open Terminal app,
- On the ZSH Shell type nano ~/.zshrc
- Now append the variable details: export BASH_SILENCE_DEPRECATION_WARNING=1
- Press Control + X, followed by Y to save the file, press enter to exit Nano,
- Now type command source ~/.zshrc to apply changes.

✌️ Update: June 2022, you will see the same message on macOS 13 Ventura
Comments:
- Further comments disabled!
- Clear Screen shortcut macOS Terminal
- What is macOS Ventura?
- [fix] How to Show file extensions on all files on Mac
- How to Find Where Mac Terminal App is Located?
- AutoSave button not working on Office on Mac (Word, Excel or Powerpoint)
- macOS say command text to speech using various voices and languages
- How to change Ping TTL value on macOS
- Open .bash_profile File in TextEdit using Terminal
- How to know the Safari Version on Mac
- How to Copy full Absolute Path of a File on Mac
- 13.0 MacOS Ventura release date
- Enable spell check in Sublime Text (macOS)
- How to Display Analog Clock on Mac Menu Bar
- How to turn off Location Services macOS Ventura 13
- How to Open VS Code on Mac
- Add Bookmark macOS Safari
- How to Fix cd: too many arguments Error in Terminal: A Step-by-Step Guide
- How to install wget on macOS
- Select Line Number TextEdit on Mac
- Strikethrough Text in Excel for Mac
- How to Enable or Disable Dark Mode on macOS Ventura 13
- How to hide or display Wifi icon in macOS Bug Sur Menu Bar
- How to install Yarn on Mac (macOS)
- How to fix command not found brew (bash, zsh) on macOS Terminal
- How to Schedule Mails in macOS Ventura
- Java - Check if array contains the value - Java
- Fix: Invalid Gradle JDK configuration found. Could not find the required JavaSDK - Gradle
- Drag drop files here option missing for SharePoint document library - SharePoint
- Android Activity Main xml stuck loading - Android-Studio
- Find your macOS version - MacOS
- Force convert HTML text input to upper case - Html
- Understanding AWS Calculator: DynamoDB on-demand capacity - AWS
- List of jar files for Jax-ws (SOAP) based Java Web Services - Java