Re: [PHP] Append to STDIN

2001-11-09 Thread Christian Reiniger

On Friday 09 November 2001 05:16, Cleber S. Mori wrote:
> Hi again...
>
> I had already RTFM...
> Neither in exec or  ``'s I found any thing about STDIN...

Just a blind shot:

$Data = escapeshellarg ($MyVariable);
system ("echo $Data | myscript.py -param");

-- 
Christian Reiniger
LGDC Webmaster (http://lgdc.sunsite.dk/)

I saw God - and she was black.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Append to STDIN

2001-11-08 Thread Martin Towell

this wouldn't be something similar to C's ungetch() ??

-Original Message-
From: Cleber S. Mori [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 09, 2001 3:16 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Append to STDIN


Hi again...

I had already RTFM...
Neither in exec or  ``'s I found any thing about STDIN...

I just wondered if some one have any tips.

thanks again!

Cleber S. Mori
Monitor Lab Linux
2o Ano - Bacharelado em Ciências da Computação
ICMC - Instituto de Ciências Matemáticas e de Computação
USP - Universidade de São Paulo - São Carlos

HPage:  http://grad.icmc.sc.usp.br/~cleber/
E-mail: [EMAIL PROTECTED]
ICQ/UIN:1409389



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



[PHP] Append to STDIN

2001-11-08 Thread Cleber S. Mori

Hi again...

I had already RTFM...
Neither in exec or  ``'s I found any thing about STDIN...

I just wondered if some one have any tips.

thanks again!

Cleber S. Mori
Monitor Lab Linux
2o Ano - Bacharelado em Ciências da Computação
ICMC - Instituto de Ciências Matemáticas e de Computação
USP - Universidade de São Paulo - São Carlos

HPage:  http://grad.icmc.sc.usp.br/~cleber/
E-mail: [EMAIL PROTECTED]
ICQ/UIN:1409389



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Append to STDIN

2001-11-08 Thread David Robley

On Fri,  9 Nov 2001 11:58, Cleber S. Mori wrote:
> Hi guys...
>
> I have a perl script which adds automatically contents to my html file.
> I have been done this manualy, from a unix shell, but now I want to
> make the PHP do-it-for-me.
>
> As I already have the perl script, I won't rewrite it again, so, how
> can I make a PHP variable ($foo) to go to the STDIN?
>
> In other words, I want to execute my htmladd.pl with the file argument,
> and get the STDIN.
>
> like
>   echo "STDIN"| htmladd.pl my_html_file.html
> But I want to STDIN be a PHP variable, that is because I want to make
> the updates over the net.
>
> Thanks!
> Hey, sorry for my bad english!
>
> Take care!

Look at exec(), system() and perhaps the use of backticks [``] to executa 
a command and pass a variable.

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   "I put all my money into an IRA," Tom said interestedly.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Append to STDIN

2001-11-08 Thread Cleber S. Mori

Hi guys...

I have a perl script which adds automatically contents to my html file. I
have been done this manualy, from a unix shell, but now I want to make the
PHP do-it-for-me.

As I already have the perl script, I won't rewrite it again, so, how can I
make a PHP variable ($foo) to go to the STDIN?

In other words, I want to execute my htmladd.pl with the file argument,
and get the STDIN.

like
  echo "STDIN"| htmladd.pl my_html_file.html
But I want to STDIN be a PHP variable, that is because I want to make the
updates over the net.

Thanks!
Hey, sorry for my bad english!

Take care!


Cleber S. Mori
Monitor Lab Linux
2o Ano - Bacharelado em Ciências da Computação
ICMC - Instituto de Ciências Matemáticas e de Computação
USP - Universidade de São Paulo - São Carlos

HPage:  http://grad.icmc.sc.usp.br/~cleber/
E-mail: [EMAIL PROTECTED]
ICQ/UIN:1409389



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]