base=$1
baseman=$2
echo "The binary distribution root starts at $base"
echo "The packed man pages distribution starts at $baseman"
echo "Is this correct? (y/n)\c"
read response
while echo "Is the blank release tape ready()? \c"
do	read default
	case $default in
	Y|y)	break
		;;
	*)	echo "Please answer 'y' when ready. \n"
		;;
	esac
done
cd $base
tar cvf /dev/rmt4 ./*
cd $baseman
tar cvf /dev/rmt1 ./*
