#!/bin/sh
n=1
while [ "$n" -le "$#" ]
do
	eval "cat <<- __EOT__
		\\\$\$n=\$$n
		__EOT__"
	n=`expr $n + 1`
done
