16 lines
331 B
Bash
Executable file
16 lines
331 B
Bash
Executable file
#!/bin/bash
|
|
|
|
action=$1
|
|
shift
|
|
|
|
[ "$action" = "usage" ] && {
|
|
echo " Bird's eye report:"
|
|
echo " birdseye"
|
|
echo " generates a textual report of pending and completed tasks in all projects and contexts"
|
|
echo ""
|
|
exit
|
|
}
|
|
|
|
[ "$action" = "birdseye" ] && {
|
|
python $(dirname $0)/birdseye.py "$TODO_FILE" "$DONE_FILE"
|
|
}
|