Leopold Toetsch <[EMAIL PROTECTED]> wrote: > * there is no opcode to use it, e.g.:
> Pio = backtick Scmd, Pargv, Iflags
I've now integrated that into the C<open> opcode:
.local pmc pipe
pipe = open "/bin/cat -n", "|-"
# or
pipe = open "/bin/ls -l", "-|"
There is still no good way to pass arguments to commands - currently the
given command gets split at spaces, which is of course broken with
respect to quoted args.
examples/io/pipe{2,3}.imc shows both kind of usage.
leo
