views:

278

answers:

2

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?)

+10  A: 

There is a semicolon after eval.

Svante
Good Heavens.OK, I'm an idiot.
mseery
And eval takes $_ as its default argument. Which lets you do things like:perl -wnE'say eval'but otherwise is not particularly useful.
ysth
+12  A: 

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...
};
Leon Timmermans
Good point. Thanks.
mseery

related questions