Last active
April 19, 2018 14:58
-
-
Save mborsare/b152acd0390c07d85917da0c66ec8ee6 to your computer and use it in GitHub Desktop.
Keep brew clean via https://medium.com/@waxzce/keeping-macos-clean-this-is-my-osx-brew-update-cli-command-6c8f12dc1731
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
brew update | |
brew upgrade | |
brew cleanup -s | |
brew cask cleanup | |
#now diagnotic | |
brew doctor | |
brew missing | |
apm upgrade -c false | |
/opt/bin/updateCCTF.sh && terminal-notifier -message “git pull done :-)” -title “CCTF up to date” | |
echo “you can hit mas upgrade to upgrade theses apps from the app store:” | |
mas outdated | |
echo “install with: mas upgrade” | |
npm update -g | |
echo “did you think to launch gem update “ | |
echo “and pip ? 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