Existe uma resposta bastante simples (embora eu não saiba ao certo se funciona em todas as versões do * nix); simplesmente faça
chmod g=u *
, por exemplo, defina as permissões de g igual às permissões de ser u .
Isto está documentado em chmod (1) :
The format of a symbolic mode is [
ugoa
...][[+-=
][perms...]...], where perms is either zero or more letters from the setrwxXst
, or a single letter from the setugo
. …︙
The letters
rwxXst
select …. Instead of one or more of these letters, you can specify exactly one of the lettersugo
: the permissions granted to the user who owns the file (u
), the permissions granted to other users who are members of the file’s group (g
), and the permissions granted to users that are in neither of the two preceding categories (o
).