1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 11:17:59 +01:00
tldr/pages/common/chown.md
2015-10-23 08:02:34 +08:00

23 lines
526 B
Markdown

# chown
> Change the owning user/group of the specified files
- change the user of a file
`chown {{user}} {{path/to/file}}`
- change the user and group of a file
`chown {{user}}:{{group}} {{path/to/file}}`
- recursively change the owner of an entire folder
`chown -R {{user}} {{path/to/folder}}`
- 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
`chown --reference={{reference-file}} {{path/to/file}}`