如何修改 Mac 默认的 shell
How to set default shell to bash on Macos Catalina
步骤
- 打开终端应用程序。
- 通过键入列出可用的
shell
。cat /etc/shells
- 更新您的帐户以使用
bash
运行chsh -s /bin/bash
- 关闭终端应用程序。
- 再次打开终端应用程序并验证它bash是您的默认
shell
。
列出所有的 shell
cat /etc/shells
参考
https://www.cyberciti.biz/faq/change-default-shell-to-bash-on-macos-catalina/