I read the Ram book and tried to modify a sample...
I want to fork off some small number of programs and display the ouput in my main window. I tried using fork and `file.exe` together but it just hung. The example
below works if you don't call an external program and just pass a "string".
I am running Win32 and using the "new" fork()...
use IO::Handle;
pipe(READER, WRITER);
WRITER->autoflush(1);
if ($pid = fork) {
close WRITER;
my $buf = "";
while (<READER>)
{ $buf .= $_; }
chomp($buf);
print "Parent Pid $$ just read this:\n$buf\n";
close READER;
waitpid($pid, 0);
} else {
die "cannot fork: $!" unless defined $pid;
close READER;
# my $out = `ping 555-1212`;
print WRITER "Child Pid $$ is sending this\n";
print PARENT_WRT $out;
close WRITER;
exit;
}
Is it because of Win32 or is there a more standard way of doing this?
thanks !!!
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.