Examples (5)
Create a new user with a default home directory and prompt the user to set a password
adduser usernameCreate a new user without a home directory
adduser --no-create-home usernameCreate a new user with a home directory at the specified path
adduser --home path/to/home usernameCreate a new user with the specified shell set as the login shell
adduser --shell path/to/shell usernameCreate a new user belonging to the specified group
adduser --ingroup group usernamemade by @shridhargupta | data from tldr-pages