#!      /bin/csh -f
#
# Copyright 1993, 1994, 1995 by the Regents of the University of California.
# see the file "Copyright" in the distribution for conditions of use.
#
#
#       Edit a file
#
#
viewfile:
echo -n "Enter file name: "
set f = $<
if ( $f == .. ) then
	echo No file name specified.
	exit
endif
$PAGER $f
