tags:

views:

92

answers:

2

I need to have a long list of people names ("Robert", "Jeniffer", "Andrew", etc.)

How long? 100 will be sort of okay, but thousands would be better.

I'd like it raw, not in an HTML webpage or something, so I can easily import it to my code.

+6  A: 

To format it nicely:

$ curl http://deron.meranda.us/data/census-dist-female-first.txt | \
   awk '{print $1}'
The MYYN
+2  A: 

Lots of word lists on this page, including several lists of names.

Dave Webb