3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Shell】Macのターミナルでシェル(bash や zsh 等)を切り替える方法まとめ

Last updated at Posted at 2023-06-05

概要

現在使用しているシェルの確認方法、選択できるシェルの一覧を確認する方法、シェルを切り替える方法についての備忘録

尚、ここで言う 「シェル」 はログイン時にデフォルトで起動する 「ログインシェル」 の事を指していますのでご留意ください。ログインシェルやインタラクティブシェルの違いについては以下の記事を参照

現在のシェル設定確認

現在使用しているシェルの確認方法

# 確認コマンド
echo $SHELL

# 出力例(Zsh になっている場合)
/bin/zsh

変更可能なシェルの確認

選択できるシェルの一覧を確認する方法

# 確認コマンド
cat /etc/shells

# 出力例(以下のいずれかに変更可能)
/bin/bash
/bin/csh
/bin/dash
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh

シェルの切り替え方法

使用するシェルを切り替える方法

# シェルの切り替え実行
chsh -s /bin/zsh

# パスワードを聞かれるので、入力して完了

この後、ターミナルを再起動すればOK

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?