Scala 执行 Shell 个文件

Scala Execute Shell file

我有一个 .sh 文件,我想在 Gatling 场景完成后在 Scala 中 运行。

有没有人有任何代码可以执行我的 sh 脚本。

你应该使用 Gattling 提供的 after 块:-

参考这个:https://gatling.io/docs/current/general/simulation_structure/#hooks

这里你可以使用after块:-

after {  println("Simulation is finished!")}

其余都是纯 scala,所以使用上面的@Andrey 回答