#!/bin/sh
echo -n "" > patch
for i in *.orig
do
	diff -u $i `basename $i .orig` >> patch
done


syntax highlighted by Code2HTML, v. 0.9.1