Derp
如何将通过 shortx.executeAction(ShellCommand.newBuilder()...) 运行的 shell 命令的结果返回到 mvel 中?这有可能实现吗?
importClass(Packages.tornaco.apps.shortx.core.proto.action.ShellCommand);
var command = ShellCommand.newBuilder()
.setCommand("ls").build();
shortx.executeAction(command).contextData.get("shellOut")
 
 
Back to Top