#! /bin/sh

# Graph all test output.

PROG=cpsa4graph

for i in *.txt
do
  o=`basename $i .txt`.svg
  echo $PROG -o $o $i
  $PROG -o $o $i
done
