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