in reply to Re: Pipe problems
in thread Pipe problems
In older versions you should use:use IO::Handle; # ... WRITE->autoflush(1);
$oldfh = select(WRITE); $| = 1; select($oldfh);
Update: bluto's right, IPC::Open2 does this for you. I usually just use pipe, which doesn't.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Pipe problems
by bluto (Curate) on Aug 31, 2004 at 21:13 UTC |