http://osfree.i2p/forum/viewtopic.php?p=368
If you want to assign "hello again" to a3 and a4="", you must do some parsing manually, like this: Code: Select all /**/
parse arg args
a1=getarg()
a2=getarg()
a3=getarg()
a4=getarg()
exit 0
/*-----------------*/
getarg: procedure expose args
/* Gets one word, or a line, enclosed
in quotes, from args */
args = strip(args)
if pos('"', args) == 1 then
parse value args with '"' opt '"' args
else
parse var args opt args
return opt
/*-----------------*/ That's it WBR,...