final case class ShebangOptions(runOptions: RunOptions = RunOptions()) extends Product with Serializable

Annotations
@HelpMessage(scala.Predef.augmentString("|Like `run`, but more handy from shebang scripts\n |\n |This command is equivalent to `run`, but it changes the way\n |`scala-cli` parses its command-line arguments in order to be compatible\n |with shebang scripts.\n |\n |Normally, inputs and scala-cli options can be mixed. Program have to be specified after `--`\n |\n |```sh\n |scala-cli [command] [scala_cli_options | input]... -- [program_arguments]...\n |```\n |\n |Contrary, for shebang command, only a single input file can be set, all scala-cli options\n |have to be set before the input file, and program arguments after the input file\n |```sh\n |scala-cli shebang [scala_cli_options]... input [program_arguments]...\n |```\n |\n |Using this, it is possible to conveniently set up Unix shebang scripts. For example:\n |```sh\n |#!/usr/bin/env -S scala-cli shebang --scala-version 2.13\n |println(\"Hello, world)\n |```\n |\n |").stripMargin, caseapp.this.HelpMessage.<init>$default$2)
Linear Supertypes
java.io.Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ShebangOptions
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ShebangOptions(runOptions: RunOptions = RunOptions())

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  8. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  9. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  11. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  12. def productElementNames: Iterator[String]
    Definition Classes
    Product
  13. val runOptions: RunOptions
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  16. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped