从 macOS Catalina 版开始, Mac 使用 zsh 作为默认登录 Shell 和交互式 Shell。
- 修改及配置默认shell
- 通过Mac设置中的
用户与群组
来设置 - 使用终端命令
chsh -s /bin/zsh
来设置 - 如果没有.zshrc,使用vim新建一个.zshrc文件,
vim ~/. zshrc
,如果需要继承bash_profile的配置,只需要在.zshrc中添加emulate sh -c 'source ~/.bash_profile'
命令,就可以继承之前的配置
- 通过Mac设置中的
- 使用bash
- 如果继续使用bash,需要在.bash_profile中填写
export BASH_SILENCE_DEPRECATION_WARNING=1
来要消除使用zsh的警告
- 如果继续使用bash,需要在.bash_profile中填写