show/hide this revision's text 3 slightly slower on single core

Try this for your main loop:

seq 1 $n | while read i
do
    let "NUM=($RANDOM%75)+15"
    echo "name$i $NUM (###)###-####"
done > $file

This will make the seq and the loop work in parallel instead of waiting for the seq to finish before starting the loop. This will be faster on multiple cores/CPUs but slightly slower on a single core.

And I agree with the others here: Does it have to be bash?

Edit: add chaos' suggestion to keep the file open, not open for append for each name.

show/hide this revision's text 2 keep file open

Try this for your main loop:

seq 1 $n | while read i
do
    <same code as before>
let "NUM=($RANDOM%75)+15"
    echo "name$i $NUM (###)###-####"
done > $file

This will make the seq and the loop work in parallel instead of waiting for the seq to finish before starting the loop.

And I agree with the others here: Does it have to be bash?

Edit: add chaos' suggestion to keep the file open, not open for append for each name.

show/hide this revision's text 1

Try this for your main loop:

seq 1 $n | while read i
do
    <same code as before>
done

This will make the seq and the loop work in parallel instead of waiting for the seq to finish before starting the loop.

And I agree with the others here: Does it have to be bash?