diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/printenv.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/printenv.c b/src/printenv.c index 1ecfaf189..5de1ff055 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 <bug-sh-utils@gnu.org>.")); } exit (status); |