Adding file permissions |
|
To add certain permissions to a file, use this command:
% chmod who+value file...
where who specifies the type of user that these permissions apply to:
u to change the owner's
(``user's'') permissions;
g to change group permissions;
o to change world
(``other'') permissions; or
a to change all permissions:
owner, group and world.
r for read permission;
w for write permission; and
x for execute permission.
For example:
foo:
% chmod o+r foo
bar:
% chmod ug+rx bar