普段はfishを使っているのだが、bashを使いたくなるときもあるので、切り替えの方法をメモしておく。
まずはbashが使えるか確認。
$ 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/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/fish
/bin/bash
とあるので使えますね。
切り替え実行。
$ chsh -s /bin/bash
これでおけ。
fishに戻すときは
$ chsh -s /usr/local/bin/fish
🐟