-
-
Save heruputra/5ae82543bd4f0eac93c1 to your computer and use it in GitHub Desktop.
Upgrade Everything
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
| #!/usr/bin/env sh | |
| sh $HOME/.oh-my-zsh/tools/upgrade.sh | |
| pip3 install --upgrade pip | |
| pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U | |
| pip2 install --upgrade pip | |
| pip2 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip2 install -U | |
| composer self-update | |
| composer global update | |
| npm -g update | |
| gem update | |
| brew update; brew upgrade; brew cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment