#!	/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.
#
#
#	Read a single newsgroup
#
retry:
echo -n "Enter newsgroup name: "
set x = $<
set y = ( $x )
if( $#y == 0 ) exit
if( $#y > 1 ) then
	echo "*** Blanks not allowed in newsgroup names"
	goto retry
endif
#
$NEWS_READER -q $x
