7

有没有办法为 sbtrun任务重定向标准输入/标准输出?我可以像这样从 Bash shell 中做到这一点:

sbt run < myfile.txt

但不是来自 sbt 控制台。这不起作用,例如:

> run < myfile.txt
4

1 回答 1

3

您可以编写一个自定义runWithInput任务,通过运行一个新的 JVM 进程并使用从参数文件重定向的输入来为您执行此操作。请参阅https://github.com/harrah/xsbt/wiki/Processhttps://github.com/harrah/xsbt/wiki/Getting-Started-Custom-Settings

于 2012-11-17T15:27:35.627 回答