For example, if I call runCommand("ls", "*/*/Test.*"), runCommand
calls "ls */*/Test.*" instead of correctly calling ls with the
arguments after doing wildcard expansion.
Is there a way to get this behavior using runCommand?
runCommand('shell', command, options)
And in the 'shell' proxy script:
#!/bin/sh
eval $1
if i want run a shell file with arguments,
ex. test.sh arg1
how can i use runCommand to run it?
thanks
"Joran Greef" <joran...@gmail.com> wrote in message
news:f0ddf1df-7127-4aac...@l2g2000yqd.googlegroups.com...