#!/bin/sh
T="TEST"
F=6
if [ "$1" = -g ]; then
	shift
	./txt2xbm "$T" | ./stretch $F  | ./xbm2gp "$@" | ./plot
else
	./txt2xbm "$T" | ./stretch $F  | ./xbm2tornado
fi
