How to Change the Default Shell to Bash on Mac OS X Catalina

Mac OS X Catalina uses by default zsh.

You can change the default shell to Bash by running the following command:chsh -s /bin/bash

If you want to back to zsh use following command:chsh -s /bin/zsh

To get list of all included shells you can use command below: <\p>cat /etc/shells

The original article you can find here