1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 21:15:25 +02:00
This commit is contained in:
Igor Shubovych 2016-02-23 03:54:19 +02:00
parent 81bda40ce3
commit ab54477533
2 changed files with 3 additions and 3 deletions

View file

@ -16,4 +16,4 @@
- Change the owner of a file/folder to match a reference file:
`chgrp --reference={{path/to/reference_file}} {{path/to/file}}
`chgrp --reference={{path/to/reference_file}} {{path/to/file}}`

View file

@ -2,7 +2,7 @@
> Change user and group ownership of files and folders.
- Change the owner user of a file/folder
- Change the owner user of a file/folder:
`chown {{user}} {{path/to/file}}`
@ -10,7 +10,7 @@
`chown {{user}}:{{group}} {{path/to/file}}`
- Recursively change the owner of a folder and its contents
- Recursively change the owner of a folder and its contents:
`chown -R {{user}} {{path/to/folder}}`