Using the shell to generate random numbers like this isn't really what it was designed to do. You'll likely be better off coding something to generate random numbers from a uniform distribution in another language, like Fortran, Perl or C.
In your code, one thing that's going to be very slow is generating a sequence of numbers from 1..1e7 and assigning them all to a variable. That's likely very wasteful, but you should profile if you want to be sure. As chaos points out, appending to the file is also likely to be very costly!
In Python, you can do something like this:
#!/usr/bin/python
import random
count = 1
print ' '.join( ['name', 'age'] )
while count <= 1000000:
age = random.randrange(15,90)
count = count + 1
name = 'name' + str(count)
print ' '.join( [ name, str(age) ] )
Running that on my laptop takes ~10 seconds. Assigning the seq from 1 to 1000000 takes ~10 seconds, when you add the random number generation your script takes over three minutes on the same machine. I got frustrated just as you did, and played around with themthe script to try and make it faster. Here's my shortened version of your code that I'm playing with:
for x in `seq 1 10000`; do
let "NUM=($RANDOM%75)+15"
echo $NUM >> test.txt
done
Running this takes about 5.3s:
$ time ./test.sh
real 0m5.318s
user 0m1.305s
sys 0m0.675s
Removing the file appending and simply redirecting STDOUT to a single file gives the following script:
for x in `seq 1 10000`; do
let "NUM=($RANDOM%75)+15"
echo $NUM
done
Running this takes about half a second:
$ time ./test.sh > test.txt
real 0m0.516s
user 0m0.449s
sys 0m0.067s
The slowness of your program is at least partly due to appending to that file. Curiously, when I tried to swap the seq call with a for loop, I didn't notice any speedup.
