#	usage: copypairs file1 file2 ...
#	copy file1 to file2, file3 to file4, ...
while test "$2" != ""
do
	cp $1 $2
	shift; shift
done
if test "$1" != ""
then echo "$0: odd number of arguments"
fi
