sed

Combine many recfiles of different types into one

1sed '1i\ ' *.rec > all.rec

Combine many recfiles of the same type into one

1recinf -d -t ${type} ${one}.rec > ${all}.rec
2sed '/^%/d' ${one}.rec ${two}.rec > all.rec

The strange syntax used by sed only makes sense after using ed