diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-02 20:34:03 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-05 15:43:35 +0100 |
commit | 9721f6c8b0b5a22313fb546af5959d69ac6b59ef (patch) | |
tree | ee5e8695ad6e487cd387e578930a214b74734b2e /miscutils | |
parent | a0c421c118abde7636d4d2b9bee93ca78e656d30 (diff) | |
download | busybox-9721f6c8b0b5a22313fb546af5959d69ac6b59ef.tar.gz |
bc: tweak help text
-v is supported but not shown
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/bc.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 78c64355b..4257511f0 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -114,12 +114,19 @@ //kbuild:lib-$(CONFIG_BC) += bc.o //kbuild:lib-$(CONFIG_DC) += bc.o +//See www.gnu.org/software/bc/manual/bc.html //usage:#define bc_trivial_usage -//usage: "EXPRESSION...\n" -//usage: "function_definition\n" +//usage: "[-sqli] FILE..." //usage: -//usage:#define bc_full_usage "\n\n" -//usage: "See www.gnu.org/software/bc/manual/bc.html\n" +//usage:#define bc_full_usage "\n" +//usage: "\nArbitrary precision calculator" +//usage: "\n" +//usage: "\n -i Interactive" +//usage: "\n -l Load standard math library" +//usage: "\n -s Be POSIX compatible" +//usage: "\n -q Quiet" +//usage: "\n -w Warn if extensions are used" +///////: "\n -v Version" //usage: //usage:#define bc_example_usage //usage: "3 + 4.129\n" |