#!/bin/sh
# 
# Written by:
# -- 
# John L. Weatherwax                2006-06-01
# 
# email: wax@alum.mit.edu
# 
# Please send comments and especially bug reports to the
# above email address.
# 
#-----

cat file2 | paste file1 - | awk '{ print $1,$2,$3,$4,$5,"\n",$6,$7,$8,$9 };' | sed -e 's/^ *//'



