Skip to content

Instantly share code, notes, and snippets.

@jgoodall
Last active December 10, 2015 19:48
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 jgoodall/4484013 to your computer and use it in GitHub Desktop.
Save jgoodall/4484013 to your computer and use it in GitHub Desktop.
update software packages installed in user space
#!/bin/sh
# update software packages installed in user space
# update homebrew
brew update
brew outdated
brew upgrade
# update global node modules
npm outdated -g
npm update -g
# update ruby gems
gem outdated
gem update
# update python packages
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment