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 コマンドを実行し、実行後にシェルを開く方法は?
何かのようなもの:
$ sbt package shell
「パッケージ」タスクが実行された後、sbt がそのシェルを開き、そこでさらにコマンドを実行できるようにします。
Linux、OSX、または別の Unix フレーバーで実行している場合は、次のように記述できます。
sbt package && sbt
sbt packageここでは、以前に成功した場合にのみシェルを開くネイキッド sbt コマンドを実行するために、Unix パイプを使用しています。
sbt package