Index: uspace/app/bdsh/cmds/modules/help/help.c
===================================================================
--- uspace/app/bdsh/cmds/modules/help/help.c	(revision b510d526c9ea91a276320012e20c9c7173bd8ff1)
+++ uspace/app/bdsh/cmds/modules/help/help.c	(revision 88944695970ebfd82dce23b26a27ded9fda43fca)
@@ -41,5 +41,4 @@
 static char *cmdname = "help";
 extern const char *progname;
-extern unsigned int cli_interactive;
 
 #define HELP_IS_MODULE   1
@@ -127,8 +126,6 @@
 	}
 
-	printf("%sAvailable commands are:\n", cli_interactive ? "\n  " : "");
-	if (cli_interactive)
-		printf(
-			"  ------------------------------------------------------------\n");
+	printf("\n  Available commands are:\n");
+	printf("  ------------------------------------------------------------\n");
 
 	/* First, show a list of built in commands that are available in this mode */
@@ -156,9 +153,6 @@
 	}
 
-	/* Provide  a little more information and inform them of history / line
-	 * editing features if they are present */
-	if (cli_interactive)
-		printf("\n  Try %s %s for more information on how `%s' works.\n\n",
-			cmdname, cmdname, cmdname);
+	printf("\n  Try %s %s for more information on how `%s' works.\n\n",
+		cmdname, cmdname, cmdname);
 
 	return CMD_SUCCESS;
