#!/bin/csh -f
#
# Print content of a file using "more"
# then wait until RETURN is pressed
#
more $1
echo -n "Press RETURN"
echo $<
