#!/bin/bash

# Requires awk and python.

awk -f plan2todo.awk plan.txt >todo.txt
awk -f plan2done.awk plan.txt >done.txt
python birdseye.py todo.txt done.txt

