Created
April 4, 2018 08:24
-
-
Save stefanchrobot/f2bdacdb302358977da0656af51683d7 to your computer and use it in GitHub Desktop.
Bash 4 as the default shell on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install bash | |
# Add the new shell to the list of allowed shells | |
sudo bash -c 'echo /usr/local/bin/bash >> /etc/shells' | |
# Change to the new shell | |
chsh -s /usr/local/bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment