diff options
author | Mathias Bynens <mathias@qiwi.be> | 2013-04-16 10:19:09 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-04-16 10:19:09 +0200 |
commit | f0944c7be79888fc7e6c422795631de77c357778 (patch) | |
tree | 3de13d26a9c58608ffdd56ed14f96fc3ff0a92b2 /.aliases | |
parent | 9aecb166d67e0119472aceb8bba71b06256929d8 (diff) | |
download | dotfiles-f0944c7be79888fc7e6c422795631de77c357778.tar.gz dotfiles-f0944c7be79888fc7e6c422795631de77c357778.tar.bz2 dotfiles-f0944c7be79888fc7e6c422795631de77c357778.zip |
.aliases: Add `week`
Thanks to @sindresorhus: https://twitter.com/sindresorhus/status/312206490880589824
Diffstat (limited to '.aliases')
-rw-r--r-- | .aliases | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -44,7 +44,10 @@ export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40 alias sudo='sudo ' # Gzip-enabled `curl` -alias gurl="curl --compressed" +alias gurl='curl --compressed' + +# Get week number +alias week='date +%V' # 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; brew cleanup; npm update npm -g; npm update -g; sudo gem update' |