
# 	Shell script to print out any number of files and
#
#	syntax --
#		doprint firstfile secondfile thirdfile ...
#
#	This can handle wild cards
#
#	Mark Ackerman
#	10/16/86
#
for i in $*			# loop thru the command line arguments
do
	sed s/ackerman@guilder\.mit\.edu/ackerman=ag@ics\.uci\.edu/ $i > temp
	mv temp $i
	echo did $i ...

done





