From: Jim Meyering Date: Mon, 30 Aug 1999 14:37:40 +0000 (+0000) Subject: (usage): Correct --help message. X-Git-Tag: FILEUTILS-4_0j-trial~252 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ccff4ede2b469a98a3247bb88665653b1f9983e9;p=thirdparty%2Fcoreutils.git (usage): Correct --help message. --- 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);