~sunblocker

Welcome to my dimly lit corner on the interwebz.

You are here: HomeTIL → Random Usernames

2022-02-14

Random Usernames

You can use the linux command pwgen to generate usernames. With the right arguments, it generates almost pronouncable names of random syllables.

pwgen -A01 [<length> [<amount>]] is the general syntax. -A01 makes it so that you get all lowercase without numbers and one username per line. The <length> parameter lets you choose how many characters your username should have and the <amount> parameter lets you choose how many usernames it should suggest.

Example: 5 usernames with the length of 10 characters:

$ pwgen -A01 10 5
aefaegeina
avubeixaik
shienaitie
jaethuekeg
yoreivoozu

Okay, I didn't actually learn this today, I've known about and used it for a while now. I replied with the above to this Lemmy post and thought it would be a gread addition to my TIL series, too.