Last active
December 12, 2018 11:24
-
-
Save residualmind/315e56fdc267a4eb59ed52217edb2701 to your computer and use it in GitHub Desktop.
This file contains 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
# in .bashrc/.zshrc | |
alias note="echo ' - '>>.plan" | |
alias task="echo ' · '>>.plan" | |
alias event="echo ' o '>>.plan" | |
alias n=note | |
alias t=task | |
alias e=event | |
alias planner="vim .plan" | |
alias plan="echo '\n= .plan =';cat .plan;echo" | |
today=`date +%Y-%m-%d` | |
ag $today .plan >/dev/null || echo "\n$today\n==========" >>.plan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment