Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Does it possible to run an outer program in perl?

by JJ (Initiate)
on May 31, 2000 at 10:20 UTC ( [id://15587]=perlquestion: print w/replies, xml ) Need Help??

JJ has asked for the wisdom of the Perl Monks concerning the following question: (programs and processes)

I want to introduct software like "verilog" in perl. So can I setup a env of my own. Is there a way to do it?

Originally posted as a Categorized Question.

  • Comment on Does it possible to run an outer program in perl?

Replies are listed 'Best First'.
Re: Does it possible to run an outer program in perl?
by Corion (Patriarch) on May 31, 2000 at 12:37 UTC

    Perl can of course start other programs. Depending on whether you want to just start the other program and let your script finish or start the program and capture output and maybe start another program after that, there are many options for you to use :

    • exec() abandons the current program and starts another program
    • system() starts the other program, waits for it to complete its run and then continues your current program
    • fork() starts the current program a second time so that you have two instances of your program running

    The man pages have examples for every one of these possibilities, but the one you will be most likely looking for is exec(), as all the other functions can be simulated using exec().

    If you simply want to start another program with a fixed command line, wait for it to finish and capture all output, you can use the following code (untested) :

    $output = `/path/to/program -and -some -parameters`;

    Note that, depending on the operating system and shell, not everything will work as expected. Under Win32, you can't start Perl scripts directly, you have to start perl.exe and give -wT script.pl as the command line parameters. The line given to `` will also be subject to UNIX shell wildcard expansion, so you have to be very carefull in security sensitive situations when using variables in the `` part. A short example :

    $filename = @ARGV[1]; $output = `/bin/program $filename`;
    If a user then gives (for example) "/dev/null; rm -rf /* &" as the first parameter, the shell will start rm as a second process, which might be a security hole when using this in a CGI application.

Re: Does it possible to run an outer program in perl?
by damian1301 (Curate) on Nov 05, 2000 at 23:20 UTC
Re: Does it possible to run an outer program in perl?
by damian1301 (Curate) on Nov 05, 2000 at 23:21 UTC
    See This its like your question

    Originally posted as a Categorized Answer.

Re: Does it possible to run an outer program in perl?
by Fastolfe (Vicar) on Nov 06, 2000 at 00:49 UTC

Log In?
Username:
Password:

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

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

    No recent polls found