you are right about the pmemd. However it has multiple output files.

But you only wish to monitor one of them, right?

If so, then do as I suggested above, but with the extra options required. And if you need to retain the file (mdout) that would have been produced had you not redirected it, just write it yourself as you monitor the output.

On Win*, it might look something like:

my $pid = open KID, '-|', 'pmemd -i mdin -c inpcrd -p prmtop -r restrt -o con -x mdcrd' or die $!; open OUT, '>', 'mdout' or die $!; while( <KID> ) { kill 'INT', $pid if m[some data]; print OUT; }

Again, I don't know the correct syntax for *nix. Maybe something like this would work?:

my $pid = open KID, '-|', qq[pmemd -i mdin -c inpcrd -p prmtop -r restrt -o /dev/tty -x mdcr +d] or die $!; open OUT, '>', 'mdout' or die $!; while( <KID> ) { kill 'INT', $pid if m[some data]; print OUT; }

Note the use of the list form of open to avoid a shell process.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP PCW It is as I've been saying!(Audio until 20090817)

In reply to Re^3: How to monitor a child process from a perl script by BrowserUk
in thread How to monitor a child process from a perl script by oscarjiao

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.