http://www.perlmonks.org?node_id=1018400


in reply to Re: How do you open a PDF file from a perl script in Windows?
in thread How do you open a PDF file from a perl script in Windows?

I'm glad you got it working, but this line haunts me:

This was in a subroutine so $outfile was local. I then tried to use it outside the subroutine so that was the problem. I removed the my and now the above call works.

What that tells me is that you aren't using strict, and that you are now creating variables inside of subroutines that you are accessing outside of the subroutines. A better approach would be to let your subroutine return a value that the calling code uses to initialize $outname


Dave

Replies are listed 'Best First'.
Re^3: How do you open a PDF file from a perl script in Windows?
by hmj6jmh (Initiate) on Feb 12, 2013 at 17:55 UTC
    Yes, of course, if I had used strict and warnings, this would have been avoided. I know I am following Perl Worst Practices. I will reform my undisciplined coding ways. Thanks, oh brother sufferer, for the admonition. ;) Meanwhile, why is exec behaving so?

      exec requires an executable to run, not a regular file.