shellscriptingpermissionschownchgrp

How do I change owner and group owner of files and directories?


I want to change the owner and the group owner for all the files in the current working directories with a single line command. I don't want to have double line as follows;

sudo chown you <some_file> chgrp new_group some_file


Solution

  • sudo chown you:new_group some_file