diff options
author | Mathias Bynens <mathias@qiwi.be> | 2013-07-25 13:00:50 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-07-25 13:00:50 +0200 |
commit | 96da7b6ba15a64abea7c136737e9f744fa3823ea (patch) | |
tree | ce4f03502aba48af61a9044f2de369c22bd83610 | |
parent | 02b0cc74c39ce4c94337aec96611f4326e70dd85 (diff) | |
download | dotfiles-96da7b6ba15a64abea7c136737e9f744fa3823ea.tar.gz dotfiles-96da7b6ba15a64abea7c136737e9f744fa3823ea.tar.bz2 dotfiles-96da7b6ba15a64abea7c136737e9f744fa3823ea.zip |
.aliases: Add `timer`
`timer` can be used as a stopwatch.
Hat tip: https://twitter.com/tow8ie/status/360077953238962176
-rw-r--r-- | .aliases | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -49,6 +49,9 @@ alias gurl='curl --compressed' # Get week number alias week='date +%V' +# Stopwatch +alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date' + # 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' |