如果每次打开终端都提示:
The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
原因是原本使用的是bash风格,提示语告知现在新系统的shell已经更换为zsh,请用此 `chsh -s /bin/zsh` 命令切换。
解决办法:
(1) 不使用bash,切换zsh,`chsh -s /bin/zsh`命令切换即可。
切换bash
```
chsh -s /bin/bash
```
切换zsh
```
chsh -s /bin/zsh
```
(2) 继续使用bash,但又不想出现提示语,则打开文件:
vim ~/.bash_profile
.bash_profile文件最下方加上:
# macOS Catalina
export BASH_SILENCE_DEPRECATION_WARNING=1
然后
ESC :wq
保存(vim保存命令)退出,重新打开命令行警示语消失。
网友评论