まだ、bash が使いたい人向け
- 現在のシェルを確認
% echo $SHELL
/bin/zsh
- 使用可能なシェルを確認
% 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
- デフォルトシェルを bash に変更
% chsh -s /bin/bash
新しくログインすると確認できるよ。
-「The default interactive shell is now zsh.」のメッセージを消す
$ echo "export BASH_SILENCE_DEPRECATION_WARNING=1" >> ~/.bash_profile