409: Final
Command: chown
chown
Syntax: chown <owner> <file>
Arguments: none
Description: Takes control of a file for that owner only.
Example:
$> ls -la
total 1
-rwx------ 1 user123 student 2765 Apr 12 1999 lorem_ipsum.txt
$>
$> chown user123 lorem_ipsum.txt
$>
$> ls -la
total 1
-rwxrwx--- 1 user123 student 2765 Apr 12 1999 lorem_ipsum.txt
$>