1See the documentation for [`Command::multicall`][crate::App::multicall] for rationale.
2
3This example omits every command except true and false,
4which are the most trivial to implement,
5```console
6$ busybox true
7? 0
8
9$ busybox false
10? 1
11
12```
13*Note: without the links setup, we can't demonstrate the multicall behavior*
14
15But includes the `--install` option as an example of why it can be useful
16for the main program to take arguments that aren't applet subcommands.
17```console
18$ busybox --install
19? failed
20...
21
22```
23
24Though users must pass something:
25```console
26$ busybox
27? failed
28busybox
29
30USAGE:
31    busybox [OPTIONS] [APPLET]
32
33OPTIONS:
34    -h, --help                 Print help information
35        --install <install>    Install hardlinks for all subcommands in path
36
37APPLETS:
38    false    does nothing unsuccessfully
39    help     Print this message or the help of the given subcommand(s)
40    true     does nothing successfully
41
42```
43