FIFO handeling

2002-04-25 Thread Rus Foster
Hi All, I've got a small problem with a FIFO. Using the following code snippet #!/bin/perl my $fifo=/tmp/tp9100; open(IN,$fifo) || die Can not open $fifo; while(IN) { print $_; } Now if I do something like cat /tmp/tp9100 and pass characters this works. However when I send ^D the

Re: FIFO handeling

2002-04-25 Thread Michael Lamertz
On Thu, Apr 25, 2002 at 10:04:38AM +0100, Rus Foster wrote: Hi All, I've got a small problem with a FIFO. Using the following code snippet #!/bin/perl simple but valid code snipped ... Now if I do something like cat /tmp/tp9100 and pass characters this works. However when I send