#!/bin/csh -f
# Plot on Versatec
if ($#argv > 0 && a$1 == a^) then
  caterr <<'EOF'

  Plot graphs on a Versatec
    usage: verplot [options]
    Options: graph(5) options
    Defaults: -m 0 -g 1 -h .9 -w .9
    Output: A graph on the Versatec

'EOF'
  exit
endif
graph -m 0 -g 1 -h .9 -w .9 $* |plot -Tver
