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,23 +1,23 @@
# chown
> Change the owning user/group of the specified files
> Change the owning user/group of the specified files.
- change the user of a file
- Change the user of a file:
`chown {{user}} {{path/to/file}}`
- change the user and group of a file
- Change the user and group of a file:
`chown {{user}}:{{group}} {{path/to/file}}`
- recursively change the owner of an entire folder
- Recursively change the owner of an entire folder:
`chown -R {{user}} {{path/to/folder}}`
- change the owner of a symbolic link
- Change the owner of a symbolic link:
`chown -h {{user}} {{path/to/symlink}}`
- use the owner and group of a reference file and apply those values to another file
- Use the owner and group of a reference file and apply those values to another file:
`chown --reference={{reference-file}} {{path/to/file}}`