From: akshay Date: Mon, 17 Nov 2025 16:04:53 +0000 (+0530) Subject: groupadd: clarify -U option help text X-Git-Tag: 4.19.0-rc1~94 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e7ccd3df6845c184d155a2dd573f52d239c94337;p=thirdparty%2Fshadow.git groupadd: clarify -U option help text Align wording with groupmod to reduce ambiguity in -U option description. --- diff --git a/src/groupadd.c b/src/groupadd.c index c7421e59f..59819616e 100644 --- a/src/groupadd.c +++ b/src/groupadd.c @@ -125,7 +125,8 @@ usage (int status) (void) fputs (_(" -r, --system create a system account\n"), usageout); (void) fputs (_(" -R, --root CHROOT_DIR directory to chroot into\n"), usageout); (void) fputs (_(" -P, --prefix PREFIX_DIR directory prefix\n"), usageout); - (void) fputs (_(" -U, --users USERS list of user members of this group\n"), usageout); + (void) fputs (_(" -U, --users USERS comma-separated list of users to add as\n" + " members of this group\n"), usageout); (void) fputs ("\n", usageout); exit (status); }