Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在执行后运行 sbt 命令并打开 shell?
就像是:
$ sbt package shell
这样在执行“包”任务后,sbt 会打开它的外壳,这样我就可以在那里运行更多命令。
如果你在 Linux、OSX 或其他 Unix 风格上运行,你可以这样写:
sbt package && sbt
在这里,我使用 Unix 管道运行裸 sbt 命令,该命令仅在先前sbt package成功时才打开 shell。
sbt package