Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Re: Re: Invoking a perl program via an executable c++ program...

by trantor (Chaplain)
on Nov 15, 2001 at 02:35 UTC ( #125448=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Invoking a perl program via an executable c++ program...
in thread Invoking a perl program via an executable c++ program...

popen is really much simpler than what you think, just have a look at the manpage.

If you want to use system, keep in mind that it does not return the output of the program you want to run, but since the command is interpreted by the shell you can actually redirect stdout and/or stderr with something like:

system("command -options args > outfile");

and then read outfile

A third, much more exciting alternative, is to play with pipe, fork, dup, exec and do yourself what popen does. After this, you'll treat shell writers with much more respect :-)

-- TMTOWTDI

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2023-12-01 00:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?