如何使用茄子工具传递变量

时间:2012-12-06 09:43:04

标签: variables eggplant

我正在阅读一份excel表格中的文字。这个文本放在一个临时变量中。

现在我想将这个temp变量用于另一个脚本。

茄子里有没有命令?

1 个答案:

答案 0 :(得分:1)

在您的其他脚本(在此示例中名为OtherScript)中,创建一个处理程序:

to HandlerName Variable1 //Starts the handler.
      //Insert your script commands here 
end HandlerName//Ends the handler.

在当前脚本中,运行以下行将temp变量传递给另一个脚本:

run OtherScript.HandlerName temp

其中temp是您要从当前脚本传递的变量,该脚本将excel表读取到另一个脚本。