David Wheeler wrote:

> Fellow Perlers,
> 
> I have code that uses open() to open a file handle pipe to an  
> external application so that I can then read from it line-by-line.  
> Unfortunately, it doesn't work on Windows.

Have you tried something like "

my $process = '/path/to/process';

open IN, "$process |" or die "open $process |: $! ($^E)";
while (<IN>) {
        print;
}
close IN;
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to