macOS 如何升级bash

5,849 阅读1分钟

由于一些历史原因,苹果公司在其所有版本的电脑上出厂设置的bash都是来自2007年的版本,哪怕你是最新版的MBP也是如此。

在你的电脑上运行 bash --version, 你会看到如下提示:

GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin18)
Copyright (C) 2007 Free Software Foundation, Inc.

如何升级你的 bash 呢?

1 首先,用 homebrew 安装最新版 bash

brew install bash 再运行 which -a bash,此时你可以看到 mac上有了两个版本的 bash

/usr/local/bin/bash
/bin/bash

第一个就是你刚安装上的bash, 第二个是出厂自带的老版本 bash

运行 $ /usr/local/bin/bash --version:

GNU bash, version 5.0.0(1)-release (x86_64-apple-darwin18.2.0)
Copyright (C) 2019 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

运行 $ /bin/bash --version:

GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin18)
Copyright (C) 2007 Free Software Foundation, Inc.

2 设置默认的bash版本:

$ sudo vim /etc/shells
/usr/local/bin/bash 添加到最后一行:

/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/bash

再执行把bash切到最新版本: $ chsh -s /usr/local/bin/bash

此时你新打开一个窗口,运行$ /bin/bash --version,就可以看到已经是新版本 bash 生效了:

GNU bash, version 5.0.16(1)-release (x86_64-apple-darwin17.7.0)
Copyright (C) 2019 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

切换shell:

切换最新bash:chsh -s /usr/local/bin/bash
切换老版本bash:chsh -s /bin/bash
切换zsh:chsh -s /bin/zsh

shell配置:

bash读取的配置文件:~/.bash_profile文件
zsh读取的配置文件:~/.zshrc文件
当从bash切换为zsh时,如果不想重新配置一遍.zshrc文件,可以在.zshrc文件中加上source ~/.bash_profile;直接从.bash_profile文件读取配置。