Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It's not clear which of two things you are asking

  • How to run an arbitrary external command line, which may or may not be the binary executable produced by compiling a C program.
  • How to call C code (say, as a subroutine call) directly from perl.
The answer to the first question is simple and threefold:
  1. Run the command with back-ticks, assigning its STDOUT to a variable: as in, my $result = `commandline`;
  2. Use the system() function: as in, my $rc = system("commandline > result.log");
  3. Open the command as a pipe (if, say, you expect lots of output):
    # note vertical bar (pipe) at end of command open PH, "commandline|" or die "commandline: $!"; while (<PH>) { # ... do something with each line of output } close PH or die "commandline: $!";

The answer to the second question is too involved to cover adequately here, but has been covered in depth elsewhere, among which are this and this.

Update: Another option, as posited by Sniper, is of course to use Inline.pm, but once again, that's a whole 'nother ball of wax.

dmm

You can give a man a fish and feed him for a day ...
Or, you can
teach him to fish and feed him for a lifetime

In reply to Re: Running a C Program within Perl. by dmmiller2k
in thread Running a C Program within Perl. by basicdez

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found