Mac 终端提示: The default interactive shell is now zsh.
次阅读
1 min read
在 Mac 上将 zsh 用作默认 Shell - Apple 支持
官网提到,从 macOS Catalina 版开始, Mac 将使用 zsh 作为默认登录 Shell 和交互式 Shell。
如果想用 zsh shell 的话,按终端提示操作即可。如果不想用 zsh shell ,可以先看系统支持的 shell 有哪些。
more /etc/shells
选一个自己喜欢的,以常见的 bash 为例,先切换到 root 用户
sudo -s
再将系统默认的 shell 换成 bash
chsh -s /bin/bash
最后
vim ~/.bash_profile
将 export BASH_SILENCE_DEPRECATION_WARNING=1
加在 .bash_profile
文件末尾 ,防止提示再次出现。