Added useradd.md with most relevant use cases

waldyrious/alt-syntax
Ruben Vereecken 2014-03-24 00:45:45 +01:00
parent 84be2a73d1
commit 1e5f01b229
1 changed files with 19 additions and 0 deletions

19
pages/common/useradd.md Normal file
View File

@ -0,0 +1,19 @@
# useradd
> Create a new user
- Create new user
`useradd {{name}}`
- Create new user with a default home directory
`useradd -m {{name}}`
- Create new user with specified shell
`useradd -s {{/path/to/shell}} {{name}}`
- Create new user with supplementary groups (mind the lack of whitespace)
`useradd -G {{group1,group2}} {{name}}`