Re: [PHP-DEV] cli version and shell useability

2002-03-05 Thread derick
On Tue, 5 Mar 2002, Marcus Börger wrote: > From my point of view both are necessary to make php a widely > accepted shell script language. Also i would appreciate --help to > show up with version and supported switches. php -h does that for you already. Derick > > marcus > > to make > > At

Re: [PHP-DEV] cli version and shell useability

2002-03-05 Thread Marcus Börger
In addition to Markus Fischer: Does the CLI version has the ability to execute code without . Assuming "-s --" as solution. -s to skip Is there a way to execute code from the command line AND process > stdin/stdout without using an external file with php code? > > Currently the only

[PHP-DEV] cli version and shell useability

2002-03-05 Thread Markus Fischer
Is there a way to execute code from the command line AND process stdin/stdout without using an external file with php code? Currently the only way of feeding code to the script (to my knowledge) is: echo '' | php >output or | php -f code.php >output Bu