@args=("$pipeline/EXE/searchXY", "-5", "UEB2K005I", "$TRI", "234", "156", "4", "Print");
system(@args);

I have the above C program with its arguments in the standard way. It is not really important what the program does, as I need to do this for several different programs.

The program expects a filename in place of $TRI, or a variable with a string in it which will be used as the filename. The output is then printed to a textfile with the filename.

I want to instead send the output to a pipe so I can read it without going through writing to and accessing a text file, so I speed up the processing as this gets repeated many thousands of times.

I can not append the program call with a pipe, because the results do not go there. I need to trick the C program into thinking a pipe handle is a textfile.

How do I do this? Perhaps I need to invoke the program in a different way? Is it even possible?

Considered by Tanktalus - code tags, please
Unconsidered by castaway - Keep/Edit/Delete: 4/33/0 - Looks fine to me


In reply to Replace filename with pipe in program argument? by ayat101

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.