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/bash | |
# 2009 Paul Mansfield | |
# License: GPL, http://www.gnu.org/copyleft/gpl.html | |
# Stop Verbose lines, thanks to Mark Harrison | |
TODOTXT_VERBOSE=0 | |
usage () { | |
echo "$(basename $0) [BASENAME] [TERM]" | |
echo " Show todo items containing TERM, grouped by project, and displayed in priority order." | |
echo " If no TERM provided, displays entire todo.txt." |