SBT Shell
We interact with sbt via the sbt shell. It provides similar features like other shells (e.g. bash, zsh, fish) including
- tab completion
- reverse history search
- command aliases
Start the sbt shell in the project we defined in the previous section
$ sbt
We can now issue commands or run tasks. To get a first impression we run help
> help
and get a list of things we can do in the shell. We will cover a lot of these commands in the related sections.