(imported topic written by KentVanOoyen)
Hello,
I have a fixlet, where I am trying to do the following:
I have 4 parameters, and I want to make a single parameter using the values of the 4 existing parameters. These values are actually options, for example: -k, -u, r, -s
I tried:
parameter “newparam” = “{parameter “one”}{parameter “two”}{parameter “three”}{parameter “four”}”
This does not work. Please help.
Also, I need to put one of more of the paramters on a command line that I am building…
appendfile ./myscript {parameter “one”}{parameter “two”}
This does not work either. Please help.