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
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
$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