Sign up for a GitHub account Sign in All Gists colby / gist:4f600eaeb71ce21b4188 Created August 22, 2014 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav Simple time tracking View gist:4f600eaeb71ce21b4188 gistfile1.txt Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 function now() { file="$HOME/.now" if [[ -z "${@}" ]]; then today="$(date "+%Y-%m-%d")" grep --color=never "$today" "$file" | cut -d' ' -f2- echo "***" date "+%H:%M:%S" else stamp="$(date "+%Y-%m-%d %H:%M:%S")" echo "$stamp" - "$@" >> "$file" fi } function yesterday() { file=$HOME/.now yesterday=$(date -v-1d "+%Y-%m-%d") grep $yest...