Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: How do you open a PDF file from a perl script in Windows?

by davido (Cardinal)
on Feb 12, 2013 at 16:00 UTC ( [id://1018400]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1018400]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-24 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found