in reply to Win32 IPC
with caller being a oneliner :#!/usr/bin/perl open(BOTH, "|./echo|") or die "error in open: $!"; while(<>){ print "."; print BOTH $_; print <BOTH>; } close(BOTH) or die "error in close: $!";
hope that helps, although it is probably not supported on win32.print while(<>);
|
|---|