#!/bin/sh
usage () {
  echo "findtodo directory
	find the string "TODO:" in named directory"
  exit
}

if [ "x$1" = "x" ]; then usage; fi


dir=$1

$DRG_DIR/scripts/searchtree $dir TODO:
echo
