Created
August 7, 2018 07:54
-
-
Save inoas/764746503af3f175ccc8ee1b074be3cd to your computer and use it in GitHub Desktop.
~/bin/brew-maintain
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 | |
echo 'brew...' \ | |
&& echo '• update' \ | |
&& brew update \ | |
&& echo '• upgrade' \ | |
&& brew upgrade \ | |
&& echo '• cleanup' \ | |
&& brew cleanup \ | |
&& echo '• prune' \ | |
&& brew prune \ | |
&& echo '• list' \ | |
&& brew list \ | |
&& echo '• doctor' \ | |
&& brew doctor \ | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment