#! /bin/csh -f
#
#
echo '#\!/bin/csh -f'
echo '#This is a csh archive. Unwrap it by typing csh file'
foreach i ( $argv)
	echo "echo $i"
	echo "cat > $i << End-of-$i"
	cat $i
	echo "End-of-$i"
end
