Last active
August 29, 2015 14:07
-
-
Save barn/f012fd085d963b3b7c3c to your computer and use it in GitHub Desktop.
Update bash on OSX 10.9.5
This file contains hidden or 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
[ "$(sw_vers -productVersion)" == "10.9.5" ] \ | |
&& wget http://support.apple.com/downloads/DL1769/en_US/BashUpdateMavericks.dmg \ | |
&& hdiutil attach BashUpdateMavericks.dmg \ | |
&& sudo installer -target / -pkg '/Volumes/OS X bash update/BashUpdateMavericks.pkg' -verbose \ | |
&& hdiutil eject '/Volumes/OS X bash update' \ | |
&& rm BashUpdateMavericks.dmg \ | |
&& echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment