Skip to content

Instantly share code, notes, and snippets.

@kmorin
Created February 29, 2016 15:12
Show Gist options
  • Save kmorin/781cece5951f936aee13 to your computer and use it in GitHub Desktop.
Save kmorin/781cece5951f936aee13 to your computer and use it in GitHub Desktop.
update script for command-line tools [osx]
#!/bin/bash
echo 'Updating Homebrew...'
brew update
echo 'Updating RVM...'
rvm get stable
echo 'Updating NVM...'
curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
echo 'Upgrading git...'
brew upgrade
#echo 'Updating npm...'
#npm install -g npm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment