-
-
Save vangberg/9305 to your computer and use it in GitHub Desktop.
Best To-Do List. Ever.
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
#!/bin/sh | |
# Best To-Do List. Ever. | |
# | |
# Usage: | |
# 1. Add a new item to list: `todo This needs to be fixed` | |
# 2. Edit the to-do list: `todo -e` | |
# 3. Show the current to-do's: `todo` | |
if [[ $1 ]]; then | |
if [ $1 = "-e" ]; then | |
$EDITOR TODO | |
else | |
echo "- $*" >> TODO | |
fi | |
else | |
$PAGER TODO | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment