When starting up q with a script, is it possible to specify argumentsthat are passed to the script?e.g.,>q [script.q] [ARGV]if possible, how, and where would the script find the arguments?
The arguments are passed as .z.x . You can even use the two builtin functions to create your own argument lists.HTHKimargs:.Q.def[enlist[mx]!enlist
:localhost:2345].Q.opt .z.xAm 26.06.2012 21:44, schrieb Tom Szczesny:> When starting up q with a script, is it possible to specify arguments> that are passed to the script?>> e.g.,>> q [script.q] [ARGV]> if possible, how, and where would the script find the arguments?>