Added t alias for one thing todo. Inspired by http://onethingwell.org/post/758016936/one-thing-todo

This commit is contained in:
Mark Szymanski
2010-11-05 15:02:12 -05:00
parent b7fcfd7f3a
commit 4b26a78745

View File

@@ -55,3 +55,14 @@ usage ()
fi
fi
}
# One thing todo
t() {
if [[ "$*" == "" ]] ; then
cat ~/.t
else
echo "$*" > ~/.t
fi
}