Scala 执行 Shell 文件[重复]

问题描述 投票:0回答:1

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

有人有任何可以执行我的 sh 脚本的代码吗?

scala shell gatling
1个回答
2
投票

您应该使用 Gatdling 提供的 after 块:-

参考此:https://docs.gadling.io/reference/script/core/simulation/#hooks

这里你可以使用 after block :-

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

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

© www.soinside.com 2019 - 2024. All rights reserved.