#!/bin/csh -f
if( -r $1 ) then
	echo -n $1
	echo " is readable"
else
	echo $1 is NOT readable
endif
