Bell 32V development
authorTom London <tbl@research.uucp>
Fri, 9 Feb 1979 04:52:15 +0000 (23:52 -0500)
committerTom London <tbl@research.uucp>
Fri, 9 Feb 1979 04:52:15 +0000 (23:52 -0500)
Work on file usr/src/cmd/plot/plot.sh

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/src/cmd/plot/plot.sh [new file with mode: 0755]

diff --git a/usr/src/cmd/plot/plot.sh b/usr/src/cmd/plot/plot.sh
new file mode 100755 (executable)
index 0000000..c7ee671
--- /dev/null
@@ -0,0 +1,14 @@
+PATH=/bin:/usr/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|-T4014|-T)       exec tek $* ;;
+*)  echo plot: terminal type $t not known 1>&2; exit 1
+esac