#!/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.
# 
#-----

# Joins the common line (first) and a(ppends) the remaining 
# lines from file 1
#
# Join them on their first field:
join -a 1 -j1 1 -j2 1 file1 file2
