awk '{print $1, $2, $3, $4, $5, $6}' database-file | while read customer street-no town-city state zip filename
do
echo "Customer Address" >> $filename
echo "$customer" >> $filename
echo "street-no" >> $filename
echo "$town-city, $state, $zip" >> $filename
done
|