macOS Catalina (10.15) からは標準のシェルが bash から zsh へ変更された。
bash起動時の警告メッセージ
1 2 3 4 5 |
Last login: Sun Dec 22 12:00:00 on ttys000 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. |
zsh への変更
1 |
$ chsh -s /bin/zsh |
bash への変更
1 |
% chsh -s /bin/bash |