Groovy脚本将值传递给sh。脚本

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

我必须在SOAPUI中创建Groovy Test Step,它将变量传递给sh脚本,然后在putty中运行它。

我创建了这个简单的Groovy脚本:

def command = "C:/path/to/putty.exe -ssh user@IP -pw pass -m 
local_command_file.sh"
def proc = command.execute()
proc.waitFor()

这个sh脚本:

#!/bin/bash

sleep 2
grep '$VARIABLE' /path/to/log/file.log
sleep 10​

有没有办法在Groovy脚本中定义$ VARIABLE然后获取sh脚本的值?

谢谢

groovy sh putty
1个回答
-1
投票

从你在这里评论的链接读取决议后,我决定创建sh。文件即时。

谢谢大家

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