macでbashを使うと出てくるzsh
使えと催促してくるメッセージを表示させない方法
下記のメッセージが出てくる、お馴染みである。
これを出さない方法を記載します。
The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please visit https://support.apple.com/kb/HT208050.
解決方法
~/.bash_profile
に下記を追加
export BASH_SILENCE_DEPRECATION_WARNING=1
下記を実行し、設定を反映させます。
source ~/.bash_profile
以上