Hi,
I have the following requirements:
In the command line executtion after -params option, I have to pass 2 parameters but each parameter could be a list:
parameter 1: (p11,p12)
parameter 2: (p21,p22)
So I’m passing the parameters exactly as shown above. How do I save them as list in the main script using “params” command.
Possible soultion:
Main Script:
params cmd_p1,cmd_p2…
function f1 (cmd_p1) // Will it pass the whole list (p11,p12)
Thanks in advance.