#!/bin/sh
PATH=/bin:/usr/bin:/usr/blit/bin
case $1 in
-T*)	t=$1
	shift ;;
*)	t=-T$TERM
esac
case $t in
-T450)	exec t450 $*;;
-T300)	exec t300 $*;;
-T300S|-T300s)	exec t300s $*;;
-Tver)	exec vplot $*;;
-Ttek|-T4010|-T4014|-T)	exec tek $* ;;
-Tjerq)	exec jplot $* ;;
-Tblit)	exec jplot $* ;;
*)  echo plot: terminal type $t not known 1>&2; exit 1
esac
