Skip to content

Instantly share code, notes, and snippets.

@sharat
Created April 17, 2019 04:18
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 sharat/cbde0f6be0e986817e062843c4fcde34 to your computer and use it in GitHub Desktop.
Save sharat/cbde0f6be0e986817e062843c4fcde34 to your computer and use it in GitHub Desktop.
Bash script to upgrade brew, npm global packages, ruby gems and Cocoapods
echo "Upgrading Brew Packages"
brew upgrade
brew cleanup
echo "Upgrading Global NPM Packages"
npm upgrade -g
echo "Upgrading Gems installed"
gem update
gem cleanup
echo "Upgrading Cocoapods Repo"
pod repo update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment