#!/bin/sh

printf "Content-Disposition: attachment; filename=data.csv\n\n"

cat header.csv
for i in 0* ; do cat $i ; printf "\n" ; done

