Skip to content

Instantly share code, notes, and snippets.

@barn
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barn/f012fd085d963b3b7c3c to your computer and use it in GitHub Desktop.
Save barn/f012fd085d963b3b7c3c to your computer and use it in GitHub Desktop.
Update bash on OSX 10.9.5
[ "$(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