mirror of https://github.com/cheat/cheat.git
9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
|
# Change file owner
|
||
|
chown user file
|
||
|
|
||
|
# Change file owner and group
|
||
|
chown user:group file
|
||
|
|
||
|
# Change owner recursively
|
||
|
chown -R user directory
|