#!/bin/sh
for i in $*
do
	echo FILE: $i
	cat $i	#add error checking
	echo	#blank line for readability
done | pr >  temp$$  &
