Re: [PHP] exec, system , backtick

2002-12-28 Thread Michael Sims
On Sat, 28 Dec 2002 13:30:49 +0530, you wrote: >Im running a linux system so i have no problem, but how would one redirect >stderr to stdout on a Win machine, if it is possible at all I believe it works the same way on NT kernels (NT, 2000, XP) but I could be wrong. A friend of mine actually ha

Re: [PHP] exec, system , backtick

2002-12-27 Thread gamin
"Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Sat, 28 Dec 2002 02:55:44 +0530, you wrote: <--sniped --> #! /usr/bin/php -q &1`; echo "the value in r is $r"; ?> If you need more info on the "2>&1" part, consult the Advanced Bash Scripting Guid

Re: [PHP] exec, system , backtick

2002-12-27 Thread gamin
"Maciek Ruckgaber Bielecki" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > how about : > #!/usr/local/bin/php -q > > $file = 'no_file'; > > if(!is_file($file)) > $mess = "no such file"; > else > $mess = shell_exec("ls $file"); > >

Re: [PHP] exec, system , backtick

2002-12-27 Thread Michael Sims
On Sat, 28 Dec 2002 02:55:44 +0530, you wrote: >I tried a simple command line script, in all cases no_file does not exist. I >do not want the command line script to show the error on the screen but to >deliver it in the variable $r. But alas, in all 3 cases i get 'rm: canoot >remove `no_file': No

Re: [PHP] exec, system , backtick

2002-12-27 Thread Maciek Ruckgaber Bielecki
how about : #!/usr/local/bin/php -q regards, Maciek Ruckaber Bielecki On Sat, 28 Dec 2002, gamin wrote: > > "Maciek Ruckgaber Bielecki" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > try : > > > $message = shell_exec('rm file'); > > ?> > > > Tried

Re: [PHP] exec, system , backtick

2002-12-27 Thread gamin
"Maciek Ruckgaber Bielecki" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > try : > $message = shell_exec('rm file'); > ?> Tried that too, :-( no success gamin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

Re: [PHP] exec, system , backtick

2002-12-27 Thread Maciek Ruckgaber Bielecki
try : -- "Few are those who see with their own eyes and feel with their own hearts." Albert Einstein - Maciek Ruckaber Bielecki On Sat, 28 Dec 2002, gamin wrote: > H

[PHP] exec, system , backtick

2002-12-27 Thread gamin
Hello, Im running PHP 4.0.6 on Red Hat 7.2 I tried a simple command line script, in all cases no_file does not exist. I do not want the command line script to show the error on the screen but to deliver it in the variable $r. But alas, in all 3 cases i get 'rm: canoot remove `no_file': No such