I’ve looked at the documentation and back in the forum a bit and couldn’t find if ^system() permits variables in the parameters. For example,
u: (show me something)
$$tmp=”/path/to/picture.jpg”
^system(/usr/bin/viewer $$tmp)
Is there an escape thing I’m missing? In Linux/Ubuntu, the $$ gets replaces with the PID, such that the command stream looks something like: /usr/bin/viewer 4321tmp
System DOES work with static parameters, I was wondering if support was there for dynamic parameters and, if so, how to make that work.
Cheers!