From: Karel Zak Date: Thu, 29 Jun 2017 10:40:22 +0000 (+0200) Subject: uuidgen: improve --help X-Git-Tag: v2.31-rc1~241 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c2af1684590be38c4c3195c138cd13100f13f2b;p=thirdparty%2Futil-linux.git uuidgen: improve --help Signed-off-by: Karel Zak --- diff --git a/misc-utils/uuidparse.c b/misc-utils/uuidparse.c index 400775e009..7618f43d2a 100644 --- a/misc-utils/uuidparse.c +++ b/misc-utils/uuidparse.c @@ -99,12 +99,10 @@ static void __attribute__((__noreturn__)) usage(void) fprintf(stdout, _(" %s [options] \n"), program_invocation_short_name); fputs(USAGE_OPTIONS, stdout); - fputs(_(" -J, --json use JSON output format\n"), stdout); - fputs(_(" -n, --noheadings don't print headings\n"), stdout); - fputs(_(" -o, --output define which output columns to use\n"), stdout); - fputs(_(" -r, --raw use the raw output format\n"), stdout); - - fputs(USAGE_SEPARATOR, stdout); + puts(_(" -J, --json use JSON output format")); + puts(_(" -n, --noheadings don't print headings")); + puts(_(" -o, --output COLUMNS to display (see below)")); + puts(_(" -r, --raw use the raw output format")); print_usage_help_options(24); fputs(USAGE_COLUMNS, stdout);