
version=
admpath=/src/paws/adm
while [ "$version" = "" ]
do
	echo "Enter the development version that is to be logged (e.g. 3.3): \c"
	read version
done

versionfile=$admpath/revlog$version
RCSfile=$admpath/RCS/revlog$version,v

if [ -f $versionfile -o -f $RCSfile ]
then
	echo $versionfile or $RCSfile already exists.  
	echo Can not continue.
	exit 1
fi

cd $admpath
echo Initial version file > `basename $versionfile`
echo Version log file for PWS version $version | ci `basename $versionfile`

echo newci and allnewrev must also be updated.  The script variable
echo \"versionfile\" in these scripts must be updated to:
echo "     $versionfile"
