summaryrefslogtreecommitdiffstats
path: root/usr.bin/env
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-06-19 07:09:44 +0000
committertjr <tjr@FreeBSD.org>2002-06-19 07:09:44 +0000
commite03fb12529ca70bb4e2db076ad98cd3a2729c19a (patch)
tree2cd0fa8022a761d48682e9099b0081eb459d14dc /usr.bin/env
parentbfa1cb192ccc7451cb1191150e479dbe394f212f (diff)
downloadFreeBSD-src-e03fb12529ca70bb4e2db076ad98cd3a2729c19a.zip
FreeBSD-src-e03fb12529ca70bb4e2db076ad98cd3a2729c19a.tar.gz
Indicate that env(1) allows you to supply arguments to the utility it
executes in the usage() message and manual page. Use "utility" instead of "command" in both places to emphasise that shell builtins etc. will not work, and to be consistent with the terminology used by POSIX. PR: 39210 Submitted by: Danny J. Zerkel <dzerkel@columbus.rr.com> MFC after: 1 week
Diffstat (limited to 'usr.bin/env')
-rw-r--r--usr.bin/env/env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/env/env.c b/usr.bin/env/env.c
index 14ffc4b..50a31b3 100644
--- a/usr.bin/env/env.c
+++ b/usr.bin/env/env.c
@@ -92,6 +92,6 @@ static void
usage()
{
(void)fprintf(stderr,
- "usage: env [-] [-i] [name=value ...] [command]\n");
+ "usage: env [-] [-i] [name=value ...] [utility [argument ...]]\n");
exit(1);
}
OpenPOWER on IntegriCloud