#!/bin/bash
# $1 is patch, $@ after shift is recipients
patchfile=$1
shift
subject=`head -n1 $patchfile`
mail -s "$subject" $@ -f tkho@ucla.edu < $patchfile

