: Developers use these lists to populate test databases with realistic "dummy" user data.
: To turn a raw .txt list into a structured table, use the Text to Columns wizard in Excel. This allows you to split names or IDs by delimiters like commas or spaces. How to Create Your Own 100 User List
If you need 100 unique, random entries rather than a pre-made list, you can use a simple Bash script: for i in {1..100}; do echo "User_$i" >> users.txt; done Use code with caution. Copied to clipboard