diff options
author | Rob Landley <rob@landley.net> | 2020-10-28 17:03:37 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-10-28 17:03:37 -0500 |
commit | 7b0ea0a21fb2d97c7bd24987f8ccf27548c0b004 (patch) | |
tree | e122684aeedcb0bbf5af09a42ebbf0759c4c1cc2 /lib | |
parent | 095891525bcb4fea341a27f75b5b5d52915cf5aa (diff) | |
download | toybox-7b0ea0a21fb2d97c7bd24987f8ccf27548c0b004.tar.gz |
Tweak help text again.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/help.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,11 @@ void show_help(FILE *out, int full) int i = toys.which-toy_list; char *s, *ss; + if (!(full&2)) + fprintf(out, "Toybox %s" USE_TOYBOX(" multicall binary") + ": https://landley.net/toybox" + USE_TOYBOX(" (see toybox --help)") "\n\n", toybox_version); + if (CFG_TOYBOX_HELP) { for (;;) { s = help_data; |