[Perl-unix-users] Child process and signal handling

2003-09-29 Thread Antoine Hue
Hi, I am using a Perl script to launch several execution of a process. Child processes are created piped to the Perl script using a open(PIPE,"|$exe"); Then, I am waiting for the child to stop before launching next iteration of the process. In case the child process is not terminating fine, I s

[Perl-unix-users] Method name is keyword

2004-11-30 Thread Antoine HUE
Hello, is it possible to tell PERL to avoid interpreting method names as a key word? Example: $ref->scalar() PERL will see scalar as a key word and is thus not able to compile. Antoine ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: h

Re: [Perl-unix-users] Method name is keyword

2004-11-30 Thread Antoine HUE
$Bill Luebkert wrote: Antoine HUE wrote: Hello, is it possible to tell PERL to avoid interpreting method names as a key word? Example: $ref->scalar() PERL will see scalar as a key word and is thus not able to compile. Don't follow - can you put that in context with a small compl