How to perform chown and chgrp in one command
In order to change both a file’s owner and group we can do this:
chown trump file
chgrp trump file
but can I do both commands in one approach or one command?
per chown man page chown user:group file
:
chown trump:trump file