vote up 0 vote down star

I am getting this warning:

Use of uninitialized value in eval \"string\" at myscript.pl line 57.

When I run this code:

eval;
{
        `$client -f $confFile -i $inputFile -o $outputFile`;
};

if( $@ )
{
        # error handling here ...
}

What is causing the error?

How can I fix the underlying cause? (Or otherwise suppress the warning?)

flag

75% accept rate

2 Answers

vote up 9 vote down check

There is a semicolon after eval.

link|flag
Good Heavens. OK, I'm an idiot. – mseery Nov 20 '08 at 1:35
And eval takes $_ as its default argument. Which lets you do things like: perl -wnE'say eval' but otherwise is not particularly useful. – ysth Nov 20 '08 at 2:28
vote up 12 vote down

The eval here would do absolutely nothing anyway. Backticks never throw errors. It's not $@ but $? that you want to check.

Also, if you're throwing away the result, it may be a cleaner idea to use system. e.g.

system($client, '-f', $confFile, '-i', $inputFile, '-o', $outputFile) and do {
    #error handling here...
};
link|flag
Good point. Thanks. – mseery Nov 20 '08 at 1:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.