LoginSignup
1
0

More than 1 year has passed since last update.

Mac ネイティブのbashからbrewでインストールしたbashに切り替える

Posted at

概要

  • Macに元から入っているbashからbrewでインストールしたbashに切り替える方法をまとめる。

方法

  1. 下記コマンドを実行してネイティブのbashのバージョンを確認する。

    bash --version
    
  2. 下記を実行して元から入っているbashのパスを確認する。

    cat /etc/shells
    
  3. 下記を実行してbrewでbashをインストールする。

    brew install bash
    
  4. Macを再起動する。

  5. bashのバージョンを確認すると無事更新されていた。

    bash --version
    GNU bash, バージョン 5.2.15(1)-release (x86_64-apple-darwin22.1.0)
    
1
0
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
1
0