The following command is the equivalent to modifying the member list in a group with Group Manager.
# admgroupmod -g 10 -x members=r2d2,holly,kryten -x passwd=abc groupname |
In this command,
-g 10 |
Specifies the number of group, in this case 10. |
-x members= r2d2,holly,kryten |
Specifies the users who belong to group 10: r2d2, holly, and kryten. |
-x passwd=abc |
Specifies the group password: abc |
groupname |
Specifies the name given to the group |