aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/hush.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 924d826cc..fcbd96c4d 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -6259,7 +6259,9 @@ int hush_main(int argc, char **argv)
6259 6259
6260 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { 6260 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
6261 printf("\n\n%s hush - the humble shell\n", bb_banner); 6261 printf("\n\n%s hush - the humble shell\n", bb_banner);
6262 printf("Enter 'help' for a list of built-in commands.\n\n"); 6262 if (ENABLE_HUSH_HELP)
6263 puts("Enter 'help' for a list of built-in commands.");
6264 puts("");
6263 } 6265 }
6264 6266
6265 parse_and_run_file(stdin); 6267 parse_and_run_file(stdin);