`sbt run`来自项目目录之外

时间:2012-07-10 19:09:45

标签: scala sbt

当我想运行我的Scala项目时,我cd到项目目录并执行

$ sbt "run arg1"

如何从项目目录外执行相同的操作?

1 个答案:

答案 0 :(得分:21)

我的回答受到这个更一般性问题的启发:How do I run a program with a different working directory from current, from Linux shell?

(cd myPath/; sbt "run arg1")

(cd myPath/ && exec sbt "run arg1")