dotfiles/.todo.actions.d/birdseye/birdseye
2025-04-29 17:53:01 +01:00

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"
}