diff options
-rw-r--r-- | shell/hush.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/shell/hush.c b/shell/hush.c index 6e2ef5df6..91beb81e1 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -4313,10 +4313,6 @@ int hush_main(int argc, char **argv) | |||
4313 | /* xfunc has failed! die die die */ | 4313 | /* xfunc has failed! die die die */ |
4314 | hush_exit(xfunc_error_retval); | 4314 | hush_exit(xfunc_error_retval); |
4315 | } | 4315 | } |
4316 | #if !ENABLE_FEATURE_SH_EXTRA_QUIET | ||
4317 | printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner); | ||
4318 | printf("Enter 'help' for a list of built-in commands.\n\n"); | ||
4319 | #endif | ||
4320 | } | 4316 | } |
4321 | #elif ENABLE_HUSH_INTERACTIVE | 4317 | #elif ENABLE_HUSH_INTERACTIVE |
4322 | /* no job control compiled, only prompt/line editing */ | 4318 | /* no job control compiled, only prompt/line editing */ |
@@ -4338,6 +4334,11 @@ int hush_main(int argc, char **argv) | |||
4338 | } | 4334 | } |
4339 | #endif | 4335 | #endif |
4340 | 4336 | ||
4337 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G.interactive_fd) { | ||
4338 | printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner); | ||
4339 | printf("Enter 'help' for a list of built-in commands.\n\n"); | ||
4340 | } | ||
4341 | |||
4341 | if (argv[optind] == NULL) { | 4342 | if (argv[optind] == NULL) { |
4342 | opt = parse_and_run_file(stdin); | 4343 | opt = parse_and_run_file(stdin); |
4343 | } else { | 4344 | } else { |