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 script exists. Is there anyway to avoid
this and keep the file handel open

Rdgs

Rus Foster


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to