Skip to content

Commit

Permalink
adduser: change token from "name" to "username"
Browse files Browse the repository at this point in the history
  • Loading branch information
waldyrious authored and agnivade committed Apr 19, 2017
1 parent 9fd6e9c commit 7329c72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pages/linux/adduser.md
Expand Up @@ -2,22 +2,22 @@

> User addition utility.
- Create a new user with a default home directory and prompts the user to set a password:
- Create a new user with a default home directory and prompt the user to set a password:

`adduser {{name}}`
`adduser {{username}}`

- Create a new user without a home directory:

`adduser --no-create-home {{name}}`
`adduser --no-create-home {{username}}`

- Create a new user with a home directory at the specified path:

`adduser --home {{path/to/home}} {{name}}`
`adduser --home {{path/to/home}} {{username}}`

- Create a new user with the specified shell set as the login shell:

`adduser --shell {{path/to/shell}} {{name}}`
`adduser --shell {{path/to/shell}} {{username}}`

- Create a new user belonging to the specified group:

`adduser --ingroup {{group}} {{name}}`
`adduser --ingroup {{group}} {{username}}`

0 comments on commit 7329c72

Please sign in to comment.