#!/bin/csh
if ( $#argv == 1) then
    if ("$1" == "-") then
	echo "Usage: $0 filename [filename]"
	echo "This program will use the pager to view compressed files"
	exit 1
    endif
endif
if ( ! $?PAGER ) set PAGER=more
zcat $argv | $PAGER
