#!/bin/bash
#
   rm -f 1milRows.dat
   for (( i=1; i<=500000; i++ ))
   do
      echo $i
      cat t.dat >> 1milRows.dat
   done

