2019-11-24,在系统更新提示N多次之后,想试试新的Catalina, 聊着天随手就把系统进行了更新,结果就是开发环境有点问题,各种重新配。
1. 问题:Shell提示现在新系统的shell已经更换为zsh,请用 chsh -s /bin/zsh
命令切换
The default interactive shell is now zsh.
macbook pro shell
To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please visit https://support.apple.com/kb/HT208050.
赶紧看看系统当前支持的Shell命令风格
cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/dash
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
解决:
1.1 不使用bash,切换zsh,`chsh -s /bin/zsh`命令切换即可。
1.2 继续使用bash,但又不想出现提示语。
[bash]vim ~/.bash_profile #编辑该文件,在底部增加以下内容
[bash]export BASH_SILENCE_DEPRECATION_WARNING=1
:wq 保存退出
source~/.bash_profile
发表回复