maybe try exec?
$instruction = "$myOutput > command ";
# for piping (as I recall) I used to do the input from the right, but I
don't think that will make a difference
exec ($instruction);


Bobby
exec ("command
"Tim T" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have a mem var $myoutput I would like to pipe it to the input of a
> shell_exec command.
>
> I tried  shell_exec("command < $myoutput") however this is not quite
right.
> Anybody have any ideas??
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to