#!/bin/sh
# This script allows sort to sort tab delemited records 
# it is called with $1 = to the field to sort on and $2 $3 = filenames to merge
sort -m -t "	"-d -k $1 $2 $3
