diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/ShellCommand.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/ShellCommand.java index b2c268cbeac..b676e0090a4 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/ShellCommand.java +++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/ShellCommand.java @@ -44,6 +44,8 @@ public class ShellCommand extends AbstractCommand { final PrintStream sysout = System.out; final PrintStream syserr = System.err; + printBanner(); + System.setIn(console.getInput()); PrintStream out = new PrintStream(new OutputStream() { @Override @@ -161,6 +163,13 @@ public class ShellCommand extends AbstractCommand { } } + private void printBanner() { + String version = ShellCommand.class.getPackage().getImplementationVersion(); + version = (version == null ? "" : " (v" + version + ")"); + System.out.println("Spring Boot CLI" + version); + System.out.println("Hit TAB to complete. Type 'help' and hit RETURN for help."); + } + public void pushPrompt(String prompt) { this.prompts.push(this.prompt); this.prompt = prompt;