1
0
mirror of https://github.com/cheat/cheat.git synced 2025-07-20 12:41:45 +02:00
Files
cheat/cheatsheets/chown
2013-09-23 20:40:53 -04:00

12 lines
224 B
Plaintext

# Change file owner
chown user file
# Change file owner and group
chown user:group file
# Change owner recursively
chown -R user directory
# Change ownership to match another file
chown --reference=/path/to/ref_file file