diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-06-20 07:07:00 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-06-20 07:07:00 +0000 |
commit | 3f6c6c912ffe7c9393155fa0f843fd1d3e64a394 (patch) | |
tree | 43c2a04fb444abecf0c018f9a28fd9dc7430a483 /usr.bin/time/time.c | |
parent | 0d9d1e78751d4f615ce2e0415192d5434cf0db71 (diff) |
Make it obvious that command line arguments may be specified for the utility
that is to be invoked on the command line. Use "utility" instead of "command"
in manual page and usage message for consistency with POSIX.
Notes
Notes:
svn path=/head/; revision=98476
Diffstat (limited to 'usr.bin/time/time.c')
-rw-r--r-- | usr.bin/time/time.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/time/time.c b/usr.bin/time/time.c index 89dbc73bbc78..88178a390fa6 100644 --- a/usr.bin/time/time.c +++ b/usr.bin/time/time.c @@ -225,7 +225,8 @@ main(argc, argv) static void usage() { - fprintf(stderr, "usage: time [-al] [-h|-p] [-o file] command\n"); + fprintf(stderr, + "usage: time [-al] [-h|-p] [-o file] utility [argument ...]\n"); exit(1); } |