Macのシェルを切り替えたくなったのでメモ書きです。
まず現在のシェルを確認します。
$ echo $SHELL
/bin/bash
次にMacで使用できるシェルを確認します。
$ 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
仮にzshに切り替えたい場合は次のコマンドを実行します。
$ chsh -s /bin/zsh
コマンド実行できたら新しくターミナルを立ち上げて次のコマンドを実行します。結果が/bin/zshになっていれば切り替え完了です。。
% echo $SHELL
/bin/zsh
余談ですが、初めてzshに切り替えると.zshrcがなかったりします。
% ls -a ~/.zshrc
無ければ作成しておきます。
% touch ~/.zshrc