diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-10-07 18:05:19 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-10-07 18:05:43 +0200 |
commit | 10c701d522864289aeac7884375629ad8c349608 (patch) | |
tree | 54059d9443d5a094bcdd68a27a109b5514945b23 /.aliases | |
parent | 866d6fe16521c775acba2c7203d48e8519e28f56 (diff) | |
download | dotfiles-10c701d522864289aeac7884375629ad8c349608.tar.gz dotfiles-10c701d522864289aeac7884375629ad8c349608.tar.bz2 dotfiles-10c701d522864289aeac7884375629ad8c349608.zip |
.aliases: Make `update` run `brew cleanup`
Thanks to @patrickkettner for the suggestion on Twitter:
http://twitter.com/patrickkettner/statuses/254387082791903232
Diffstat (limited to '.aliases')
-rw-r--r-- | .aliases | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ alias sudo='sudo ' alias gurl="curl --compressed" # Get OS X Software Updates, and update installed Ruby gems, Homebrew, npm, and their installed packages -alias update='sudo softwareupdate -i -a; brew update; brew upgrade; npm update npm -g; npm update -g; sudo gem update' +alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup; npm update npm -g; npm update -g; sudo gem update' # IP addresses alias ip="dig +short myip.opendns.com @resolver1.opendns.com" |