#!/bin/csh -f

# vig - vi a gzipped file easily	-erco 5/8/98

set tmp = "/var/tmp/vig.$$"
gunzip -c $* > $tmp
view $tmp

/bin/rm -f $tmp
