One Thing Well | One Thing Todo
One Thing Todo is the simplest todo list ‘manager’ I could come up with:
t() {
if [[ ”$*” == ”” ]] ; then
cat ~/.t
else
rm ~/.t ; echo ”$*” > ~/.t
fi
}
Pop the above in your .bashrc (or similar—it works fine with zsh and ksh).
To add an item:
t Post to the blog about OTT
To read it:
t
Seriously, I wanna be Jack when I grow up.
