diff options
author | tjr <tjr@FreeBSD.org> | 2002-06-28 09:23:39 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-06-28 09:23:39 +0000 |
commit | c4f791d939cb4464e63f4f42ae8a8d5990ff321a (patch) | |
tree | bf7ce7d5ac6f14dd35f53e6c7135843b721126bc /usr.bin/env | |
parent | 9e2f5773900ea3f66d407edf7d07ee68a10643f1 (diff) | |
download | FreeBSD-src-c4f791d939cb4464e63f4f42ae8a8d5990ff321a.zip FreeBSD-src-c4f791d939cb4464e63f4f42ae8a8d5990ff321a.tar.gz |
Discourage use of env(1)'s "-" flag by moving its description to the
Compatibility section of the manual page.
Diffstat (limited to 'usr.bin/env')
-rw-r--r-- | usr.bin/env/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/env/env.c b/usr.bin/env/env.c index 50a31b3..a955457 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 ...] [utility [argument ...]]\n"); + "usage: env [-i] [name=value ...] [utility [argument ...]]\n"); exit(1); } |