in reply to why?
Running things under strict and -w make me wonder about the lines:
You're using symbolic references here, as pipe expects filehandles to connect together. Create the handles explicitly (with the open command) and try it. You might also enable warnings as I did, to see if the parser gives you better errors. (I think you need to create FileHandle objects for $read and $write.)my $read="READ$name"; my $write="WRITE$name"; pipe($read,$write);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: why?
by iic (Sexton) on May 04, 2000 at 21:41 UTC |