1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages/linux/groupmod.md
2016-12-14 10:49:54 +05:30

11 lines
211 B
Markdown

# groupmod
> Modify existing user groups in the system.
- Change the group name:
`groupmod -n {{new_group_name}} {{old_group_name}}`
- Change the group id:
`groupmod -g {{new_group_id}} {{old_group_name}}`