Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

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