today's work
[unix-history] / usr / src / usr.bin / plot / plot.sh
CommitLineData
50d0fb3e
SL
1#! /bin/sh
2# @(#)plot.sh 4.1 (Berkeley) %G%
3#
4PATH=/bin:/usr/bin
5case $1 in
6-T*) t=$1
7 shift ;;
8*) t=-T$TERM
9esac
10case $t in
11-T450) exec t450 $*;;
12-T300) exec t300 $*;;
13-T300S|-T300s) exec t300s $*;;
14-Tver) exec vplot $*;;
15-Ttek|-T4014|-T) exec tek $* ;;
16*) echo plot: terminal type $t not known 1>&2; exit 1
17esac