我很好奇是否有办法在控制台中运行初始命令后得到 $zipFilename = __FILE__;
// Send zip to recipient
header("Content-Dispositon: attachment; filename=\"$zipFilename\"");
header("Content-Length: ".filesize($zipFilename));
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");
header("Connection: Keep-Alive");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: public");
header("Accept-Ranges: bytes");
readfile($zipFilename);
提示,而不必点击“返回”。
例如在这个项目中:https://github.com/underscoreio/creative-scala-template/blob/master/build.sbt初始命令将执行但不会返回,所以看起来程序挂起的时候真正需要做的就是点击回车。我尝试在导入块之后添加空行,但没有做任何事。
我们可以在文档中澄清这种期望,但如果我们不必这样做,那将是可爱的。
该项目目前正在运行Scala 2.12.4和SBT 1.1.0
运行SBT控制台后所需的输出: