On Apr 4, 2006, at 21:41, $Bill Luebkert wrote:

Have you tried something like "

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

open IN, "$process |" or die "open $process |: $! ($^E)";
while (<IN>) {
        print;
}
close IN;

Ah, no, I haven't. I was trying to avoid shell interpolation. But you're right, it just might be the simplest solution.

Best,

David
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to