I used the below code to get input from the user using jacl scripting language
set pname [gets stdin]
$AdminConfig create Property $pluginname {{validationExpression ""} {name $pname} {description ""} {value "30000"} {required "false"}}
I can't able to get a value of variable {name $pname}
. I shows the error as attribute name is invalid.. Thanks in advance
Since braces prevent substitution, you could do:
I think an easier pattern to remember is the one you'll see here