Christophe Rhodes <[EMAIL PROTECTED]> writes:
> Nicolas Neuss <[EMAIL PROTECTED]> writes:
>
>> CL-USER> (ext:run-program "/usr/bin/dx" '("-script" "-cache off") :output
>> *trace-output*)
>
> Is this really expecting a single parameter "-cache off", or two
> distinct parameters, "-cache" and "off"? To put it another way, that
> RUN-PROGRAM line is the same as running, at a shell prompt
> $ /usr/bin/dx -script -cache\ off
> whereas I would expect that you mean
> $ /usr/bin/dx -script -cache off
>
> Cheers,
>
> Christophe
Thank you very much, Christophe. As always you are a great help! This
works just fine, and I have learnt something more about argument passing.
Yours, Nicolas