#!/vsta/bin/sh
set -x
for x
do
	if test ! -f RCS/$x
	then
		echo "$x": not an RCS file
		exit 1
	fi
	rm -f $x
	rcs -u $x
	co $x
done
exit 0
