#!/sbin/sh
#
# $Revision: 2.0.0.2 $ $State: Exp $
# $Date: 1993/09/02 16:12:21 $
#
#
# Not strictly speaking needed, but it is handy for debugging
#
while test $# -ge 1
do
	while read i
	do
		echo "$i"
	done < $1
	shift
done
