Feature - Rejected call script parameters

Not sure if this is a bug or there's just something I haven't tried yet.

So, if a script main() function takes parameters, I can pass them through the gCLI.

But what about non-terminating parameters that are strings? I want to manually call a chatbot script which is main(string,string), but call treats everything as the first string, no matter what I try to separate them with.

Something I'm overlooking or is there just not a way to pass more parameters after a string?
 
Thanks! That actually didn't work, but it did give me what I needed to make it work. import<> doesn't actually bring in main(), so I basically had to just edit main to call some other function (in this case, chatMain(); ) and then use that in the ash call.
Thought I'd just post that here in case someone else comes across this problem.

There's really not a more elegant solution than this though? Oh well, it does what it needs to do. Thanks again.
 
Last edited:
Top