Used by OpenPanel to generate a random admin username on installation.
inspired by Moby's Package namesgenerator
On terminal:
source <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/random-username-generator/refs/heads/main/generator.sh) && echo "$random_name"Or in your scripts:
source <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/random-username-generator/refs/heads/main/generator.sh)
# and later where needed use $random_name
SOMETHING="$random_name"