Files
cheatsheet-tldr/tldr/linux/groupmod
2024-03-15 00:13:13 +00:00

19 lines
402 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# groupmod
> Modify existing user groups in the system.
> See also: `groups`, `groupadd`, `groupdel`.
> More information: <https://manned.org/groupmod>.
- Change the group name:
`sudo groupmod --new-name {{new_group}} {{group_name}}`
- Change the group ID:
`sudo groupmod --gid {{new_id}} {{group_name}}`