aboutsummaryrefslogtreecommitdiff
path: root/shell/msh.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-19 00:22:23 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-19 00:22:23 +0000
commitd63dee4019a62d1c5bb31755d9866ef921aff76b (patch)
tree1c5995c19999e51b9ed93ee12c2b4a8b421bdcd1 /shell/msh.c
parentf4c208937c997f9b65e77b9304a527b03349d219 (diff)
downloadbusybox-d63dee4019a62d1c5bb31755d9866ef921aff76b.tar.gz
Add an option to make the shells not advertise their busybox nature
Diffstat (limited to 'shell/msh.c')
-rw-r--r--shell/msh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/msh.c b/shell/msh.c
index e16d6f304..5c4ec1019 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -801,8 +801,10 @@ extern int msh_main(int argc, char **argv)
PUSHIO(afile, 0, iof);
if (isatty(0) && isatty(1) && !cflag) {
interactive++;
+#ifndef BB_FEATURE_SH_EXTRA_QUIET
printf( "\n\n" BB_BANNER " Built-in shell (msh)\n");
printf( "Enter 'help' for a list of built-in commands.\n\n");
+#endif
}
}
signal(SIGQUIT, qflag);