(I have a feeling you may not like this answer, but you technically didn't specify the answer had to remain in bash! :P)
It's common to rapidly develop something in prototyping language, and then possibly switch to another language (often C) as needed. Here's a very similar program in Python for you to compare:
#!/usr/bin/python
import sys
import random
def main(args=None):
args = args or []
if len(args) == 1:
# default first parameter
args = ["-"] + args
if len(args) != 2:
sys.stderr.write("error: invalid parameters\n")
return 1
n = int(args[1])
output = sys.stdout if args[0] == "-" else open(args[0], "a")
for i in xrange(1, n + 1):
num = random.randint(0, 74)
output.write("name%s %s (###)###-####\n" % (i, num))
sys.stderr.write("List generated.\n") # see note below
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))
Note: Only using stdout for "real output" instead of status notifications allows this program to be run in parallel with others, piping data directly from stdout of one to stdin of another. (Possibly It's possible with special files in *nix, but just easier if you can use stdout.) Example:
$./rand_names.py 1000000 | sort -n -k2 > output_file
And it should be fast enough:
$time python rand_names.py ./rand_names.py 1000000 > /dev/null List generated. real 0m16.393s user 0m15.108s sys 0m0.171s
