Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: open command for input

by aitap (Curate)
on Nov 23, 2012 at 17:58 UTC ( [id://1005311]=note: print w/replies, xml ) Need Help??


in reply to Re^2: open command for input
in thread open command for input

Another option is IPC::Open2, which is in core. This will require a bit more code, but should work:

use IPC::Open2; open IN, "<", "commandfile"; # unfortunately, scalar filehandles won't + work this way open OUT, ">", "logfile"; my $pid = open2(">&OUT", "<&IN", "theprogram"); waitpid $pid, 0;

You can also package your application together with module you use with the help of PAR::Packer (its installation is required only on the packager's computer). But I don't know whether it will interfere with PDK or not.

Sorry if my advice was wrong.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-25 08:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found