diff options
author | Eric Andersen | 2001-10-19 00:22:23 +0000 |
---|---|---|
committer | Eric Andersen | 2001-10-19 00:22:23 +0000 |
commit | d63dee4019a62d1c5bb31755d9866ef921aff76b (patch) | |
tree | 1c5995c19999e51b9ed93ee12c2b4a8b421bdcd1 /shell/lash.c | |
parent | f4c208937c997f9b65e77b9304a527b03349d219 (diff) | |
download | busybox-d63dee4019a62d1c5bb31755d9866ef921aff76b.zip busybox-d63dee4019a62d1c5bb31755d9866ef921aff76b.tar.gz |
Add an option to make the shells not advertise their busybox nature
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/lash.c b/shell/lash.c index b3f7cb6..ffdec87 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -1611,8 +1611,10 @@ int lash_main(int argc_l, char **argv_l) if (interactive==TRUE) { //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]); /* Looks like they want an interactive shell */ +#ifndef BB_FEATURE_SH_EXTRA_QUIET printf( "\n\n" BB_BANNER " Built-in shell (lash)\n"); printf( "Enter 'help' for a list of built-in commands.\n\n"); +#endif } else if (local_pending_command==NULL) { //printf( "optind=%d argv[optind]='%s'\n", optind, argv[optind]); input = xfopen(argv[optind], "r"); |