diff options
author | Ron Yorston <rmy@pobox.com> | 2015-06-17 09:07:15 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-06-17 09:07:15 +0100 |
commit | 6a71ef3e25272126afc61a95067823941c57322c (patch) | |
tree | 21cfc4c80a94291337707303cac2b41b78939ac6 /libbb/appletlib.c | |
parent | 7c74f6f439591fbbfc4ade6ca989b11e087ccd1e (diff) | |
download | busybox-w32-6a71ef3e25272126afc61a95067823941c57322c.tar.gz busybox-w32-6a71ef3e25272126afc61a95067823941c57322c.tar.bz2 busybox-w32-6a71ef3e25272126afc61a95067823941c57322c.zip |
busybox: update help message
Tweak text of help message in standalone shell mode. Add a warning
if Windows globbing is enabled.
Diffstat (limited to 'libbb/appletlib.c')
-rw-r--r-- | libbb/appletlib.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index e99d3a5c4..54f6c2c83 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -655,12 +655,17 @@ static int busybox_main(char **argv) | |||
655 | ) | 655 | ) |
656 | IF_FEATURE_SH_STANDALONE( | 656 | IF_FEATURE_SH_STANDALONE( |
657 | "\tBusyBox is a multi-call binary that combines many common Unix\n" | 657 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
658 | "\tutilities into a single executable. This version has been\n" | 658 | "\tutilities into a single executable. The shell in this version\n" |
659 | "\tconfigured to prefer built-in utilities to external binaries.\n" | 659 | "\thas been configured to prefer built-in utilities to external\n" |
660 | "\tThis avoids having to install a link to busybox for each\n" | 660 | "\tbinaries. This avoids having to install a link to busybox for\n" |
661 | "\tfunction to be invoked.\n" | 661 | "\teach function to be invoked.\n" |
662 | ) | 662 | ) |
663 | "\n" | 663 | "\n" |
664 | #if ENABLE_GLOBBING | ||
665 | "\tSupport for native Windows wildcards is enabled. In some\n" | ||
666 | "\tcases this may result in wildcards being processed twice.\n" | ||
667 | "\n" | ||
668 | #endif | ||
664 | "Currently defined functions:\n" | 669 | "Currently defined functions:\n" |
665 | ); | 670 | ); |
666 | col = 0; | 671 | col = 0; |