1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-29 08:08:37 +00:00

stdbuf(1): Add buffer definition "B" to the usage message

This option has been missing from the usage message ever since the program
was first imported.

Submitted by:	shivansh
Reviewed by:	asomers
MFC after:	3 weeks
Sponsored by:	Google, Inc (GSoC 2017)
Differential Revision:	https://reviews.freebsd.org/D11529
This commit is contained in:
Alan Somers 2017-07-08 17:08:42 +00:00
parent 9bb3819b32
commit 761e666303
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320807

View File

@ -40,7 +40,7 @@ static void
usage(int s) usage(int s)
{ {
fprintf(stderr, "Usage: %s [-e 0|L|<sz>] [-i 0|L|<sz>] [-o 0|L|<sz>] " fprintf(stderr, "Usage: %s [-e 0|L|B|<sz>] [-i 0|L|B|<sz>] [-o 0|L|B|<sz>] "
"<cmd> [args ...]\n", __progname); "<cmd> [args ...]\n", __progname);
exit(s); exit(s);
} }