home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 7.ddi / usr / bin / tplot < prev    next >
Encoding:
Text File  |  1990-12-08  |  682 b   |  27 lines

  1. #!/sbin/sh
  2. #    Copyright (c) 1990 UNIX System Laboratories, Inc.
  3. #    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T
  4. #      All Rights Reserved
  5.  
  6. #    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF
  7. #    UNIX System Laboratories, Inc.
  8. #    The copyright notice above does not evidence any
  9. #    actual or intended publication of such source code.
  10.  
  11.  
  12. #ident    "@(#)/usr/bin/tplot.sl 1.1 4.0 12/08/90 26270 AT&T-USL"
  13.  
  14. case $1 in
  15. -T*)    t=$1
  16.     shift ;;
  17. *)    t=-T$TERM
  18. esac
  19. case $t in
  20. -T450)    exec /usr/lib/t450 $*;;
  21. -T300)    exec /usr/lib/t300 $*;;
  22. -T300S|-T300s)    exec /usr/lib/t300s $*;;
  23. -Tver)    exec /usr/lib/vplot $*;;
  24. -Ttek|-T4014)    exec /usr/lib/t4014 $* ;;
  25. *)  echo terminal type not known 1>&2; exit 1
  26. esac
  27.