From: Benno Schulenberg Date: Sun, 10 Aug 2008 17:39:38 +0000 (+0200) Subject: groups: let synopsis show that the command allows multiple usernames X-Git-Tag: v7.0~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=64c25ed741c07a6b2c4f5a4f63160b528540f448;p=thirdparty%2Fcoreutils.git groups: let synopsis show that the command allows multiple usernames Also make the docstring say so. --- diff --git a/src/groups.c b/src/groups.c index ef9640005f..c71667b08b 100644 --- a/src/groups.c +++ b/src/groups.c @@ -52,10 +52,10 @@ usage (int status) program_name); else { - printf (_("Usage: %s [OPTION]... [USERNAME]\n"), program_name); + printf (_("Usage: %s [OPTION]... [USERNAME]...\n"), program_name); fputs (_("\ -Print information for USERNAME or, if no USERNAME is specified,\n\ -the current process (which is different if the groups database has changed).\n"), +Print group memberships for each USERNAME or, if no USERNAME is specified, for\n\ +the current process (which may differ if the groups database has changed).\n"), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout);