Skip to content

Instantly share code, notes, and snippets.

@FredericJacobs
Created March 16, 2016 12:45
Show Gist options
  • Save FredericJacobs/f07208092b8d12e722fd to your computer and use it in GitHub Desktop.
Save FredericJacobs/f07208092b8d12e722fd to your computer and use it in GitHub Desktop.
Script I run daily to update dependencies.
#!/bin/sh
echo "๐Ÿ†• Updating System (root)"
sudo softwareupdate --install --all
echo "๐Ÿ†• Updating Gems";
gem update;
echo "๐Ÿ†• Updating Brew";
brew update;
brew upgrade;
echo "๐Ÿ†• Updating Node";
npm update;
npm upgrade;
echo "๐Ÿ†• Updating Rust";
multirust update;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment