From 6a71ef3e25272126afc61a95067823941c57322c Mon Sep 17 00:00:00 2001 From: Ron Yorston Date: Wed, 17 Jun 2015 09:07:15 +0100 Subject: busybox: update help message Tweak text of help message in standalone shell mode. Add a warning if Windows globbing is enabled. --- libbb/appletlib.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'libbb') 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) ) IF_FEATURE_SH_STANDALONE( "\tBusyBox is a multi-call binary that combines many common Unix\n" - "\tutilities into a single executable. This version has been\n" - "\tconfigured to prefer built-in utilities to external binaries.\n" - "\tThis avoids having to install a link to busybox for each\n" - "\tfunction to be invoked.\n" + "\tutilities into a single executable. The shell in this version\n" + "\thas been configured to prefer built-in utilities to external\n" + "\tbinaries. This avoids having to install a link to busybox for\n" + "\teach function to be invoked.\n" ) "\n" +#if ENABLE_GLOBBING + "\tSupport for native Windows wildcards is enabled. In some\n" + "\tcases this may result in wildcards being processed twice.\n" + "\n" +#endif "Currently defined functions:\n" ); col = 0; -- cgit v1.2.3-55-g6feb