From ccff4ede2b469a98a3247bb88665653b1f9983e9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 30 Aug 1999 14:37:40 +0000 Subject: [PATCH] (usage): Correct --help message. --- src/printenv.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/printenv.c b/src/printenv.c index 1ecfaf1899..5de1ff055c 100644 --- a/src/printenv.c +++ b/src/printenv.c @@ -60,12 +60,15 @@ usage (int status) program_name); else { - printf (_("Usage: %s [OPTION]... [VARIABLE]...\n"), program_name); printf (_("\ +Usage: %s [VARIABLE]...\n\ + or: %s OPTION\n\ If no environment VARIABLE specified, print them all.\n\ \n\ --help display this help and exit\n\ - --version output version information and exit\n")); + --version output version information and exit\n\ +"), + program_name, program_name); puts (_("\nReport bugs to .")); } exit (status); -- 2.47.3