I'm not sure what you are trying to do.. How to you run the command, What do you want the script to do ?
The script should run specified app with specified arguments throw alias
The first argument is the application name which is stored in folder with the same name
I want to pass path to file with spaces which must be a single argument in double quotes
EsperoDrake
What about
return "\"" + $args + "\"";
or
@var $args = "\"" + GetArgs() + "\"";
I think this would work, but I also need to pass other arguments after (or before) filepath
So, filepath must be quoted while other arguments should pass as is
Currently, MC command line deletes all double quotes ignoring
\"(turns it to
\, AFAIU)