Shebang
This command is equivalent to run
, but it changes the way Scala CLI parses options (used to configure the tool) and
inputs (the sources of your project) in order to be compatible with shebang
scripts.
Normally, inputs and scala-cli
options can be mixed. Program arguments (to be passed to your app) have to be specified
after --
(double dash) separator.
scala-cli [command] [scala_cli_options | input]... -- [program_arguments]...
For the shebang
command, only a single input can be set. All Scala CLI options must be set before
the input, while everything after the input is considered a program argument.
scala-cli shebang [scala_cli_options]... input [program_arguments]...
More details can be found in Shebang guide.