Re: ARGV in exec subprocesses

2000-02-11 Thread Matt Sergeant
On Fri, 11 Feb 2000, Stas Bekman wrote: > > Stas, the example you supplied in the miniguide > > (http://perl.apache.org/guide/performance.html#Forking_or_Executing_Subprocesse) > > doesn't work. > > It's because the scalar returned by FreezeThaw::thaw contains shell escape > > chars, like: [|;] s

Re: ARGV in exec subprocesses

2000-02-11 Thread Stas Bekman
> Stas, the example you supplied in the miniguide > (http://perl.apache.org/guide/performance.html#Forking_or_Executing_Subprocesse) > doesn't work. > It's because the scalar returned by FreezeThaw::thaw contains shell escape > chars, like: [|;] so system("program.pl $params") obviously will brea

Re: ARGV in exec subprocesses

2000-02-10 Thread Edwin Pratomo
On Fri, 11 Feb 2000, Edwin Pratomo wrote: > Stas, the example you supplied in the miniguide > (http://perl.apache.org/guide/performance.html#Forking_or_Executing_Subprocesse) > doesn't work. > It's because the scalar returned by FreezeThaw::thaw contains shell escape

ARGV in exec subprocesses

2000-02-10 Thread Edwin Pratomo
Stas, the example you supplied in the miniguide (http://perl.apache.org/guide/performance.html#Forking_or_Executing_Subprocesse) doesn't work. It's because the scalar returned by FreezeThaw::thaw contains shell escape chars, like: [|;] so system("program.pl $params") obviously will break. If th