How to Dynamically form plugin paramers
I want to run a plugin say it MyPlugin. This plugin accepts a number of parameters so it should be called like
MyPlugin::MakeSmthUseful action /PARAM1 param1 /PARAM2 param2
I want to form plugin parameters programmatically so I copy the string "action /PARAM1 param1 /PARAM2 param2" into a variable. Then I need to pass this string (unquoted) to a plugin. How can do I? In case I pass quoted string, plugin assumes it to be the single parameter (i.e. action in terms of code above).