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 :

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.


In reply to Re: Does it possible to run an outer program in perl? by Corion
in thread Does it possible to run an outer program in perl? by JJ

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.