Files
cheatsheet-tldr/tldr/linux/groupmod
2025-03-13 00:18:34 +00:00

19 lines
420 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 {{[-n|--new-name]}} {{new_group}} {{group_name}}`
- Change the group ID:
`sudo groupmod {{[-g|--gid]}} {{new_id}} {{group_name}}`