Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How do I run another program from within my Perl program

by Anonymous Monk
on Jun 29, 2000 at 21:36 UTC ( [id://20444]=note: print w/replies, xml ) Need Help??


in reply to How do I run another program from within my Perl program

You can also use exec(), or the open or open2 methods of IPC::Open2, or even open3 of IPC::Open3 if you want finer control of input and output.

exec will start the other program, terminating your perl program.

open lets you either read or write from/to the process.

open2 lets you do both, but isn't very portable.

open3 lets you read from both STDOUT and STDERR, and write to STDIN, but it can get ugly trying to read both outputs. It also has the portability problems of open2.

  • Comment on Re: How do I run another program from within my Perl program

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-26 03:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found