#!/bin/csh -f
#
set ans=n
while ( $ans != y )
	echo  -n Next file:
	set ans=$<
	/bin/ls -ld $ans
end
