59.6 Using the embedded shell
Spring Boot includes command-line completion scripts for BASH and zsh shells. If you don’t use either of these shells (perhaps you are a Windows user) then you can use the shell
command to launch an integrated shell.
$ spring shell **Spring Boot** (v1.4.1.BUILD-SNAPSHOT) Hit TAB to complete. Type \'help' and hit RETURN for help, and \'exit' to quit.
From inside the embedded shell you can run other commands directly:
$ version Spring CLI v1.4.1.BUILD-SNAPSHOT
The embedded shell supports ANSI color output as well as tab
completion. If you need to run a native command you can use the !
prefix. Hitting ctrl-c
will exit the embedded shell.