X Tutup
Skip to content

Commit 7009610

Browse files
committed
userdbctl: make --help fit in 80 columns
1 parent 6164ec4 commit 7009610

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/userdb/userdbctl.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -581,24 +581,24 @@ static int help(int argc, char *argv[], void *userdata) {
581581
printf("%s [OPTIONS...] COMMAND ...\n\n"
582582
"%sShow user and group information.%s\n"
583583
"\nCommands:\n"
584-
" user [USER…] Inspect user\n"
585-
" group [GROUP…] Inspect group\n"
586-
" users-in-group [GROUP…] Show users that are members of specified group(s)\n"
587-
" groups-of-user [USER…] Show groups the specified user(s) is a member of\n"
588-
" services Show enabled database services\n"
584+
" user [USER…] Inspect user\n"
585+
" group [GROUP…] Inspect group\n"
586+
" users-in-group [GROUP…] Show users that are members of specified group(s)\n"
587+
" groups-of-user [USER…] Show groups the specified user(s) is a member of\n"
588+
" services Show enabled database services\n"
589589
"\nOptions:\n"
590-
" -h --help Show this help\n"
591-
" --version Show package version\n"
592-
" --no-pager Do not pipe output into a pager\n"
593-
" --no-legend Do not show the headers and footers\n"
594-
" --output=MODE Select output mode (classic, friendly, table, json)\n"
595-
" -j Equivalent to --output=json\n"
590+
" -h --help Show this help\n"
591+
" --version Show package version\n"
592+
" --no-pager Do not pipe output into a pager\n"
593+
" --no-legend Do not show the headers and footers\n"
594+
" --output=MODE Select output mode (classic, friendly, table, json)\n"
595+
" -j Equivalent to --output=json\n"
596596
" -s --service=SERVICE[:SERVICE…]\n"
597-
" Query the specified service\n"
598-
" --with-nss=BOOL Control whether to include glibc NSS data\n"
599-
" -N Disable inclusion of glibc NSS data and disable synthesizing\n"
600-
" (Same as --with-nss=no --synthesize=no)\n"
601-
" --synthesize=BOOL Synthesize root/nobody user\n"
597+
" Query the specified service\n"
598+
" --with-nss=BOOL Control whether to include glibc NSS data\n"
599+
" -N Do not synthesize or include glibc NSS data\n"
600+
" (Same as --synthesize=no --with-nss=no)\n"
601+
" --synthesize=BOOL Synthesize root/nobody user\n"
602602
"\nSee the %s for details.\n"
603603
, program_invocation_short_name
604604
, ansi_highlight(), ansi_normal()

0 commit comments

Comments
 (0)
X Tutup