in reply to Handling program output in real time
1. create the fifo using 'mkfifo', and make sure blackbox.pl has write permissions to it. 2. change blackbox.pl to write to the fifo file, instead of writing to STDOUT. 3. change your script above to read from the fifo file instead of from PIPE1, like this my $fifo_file = "/path/to/my_fifo"; open FIFO, "<$fifo_file" or die "Can't read $fifo_file: $!"; while (<FIFO>) { # ...Filter and munge $_ print $_; }
You'll have to play with this a little to get it to work the way you want, but basically written this way, this script(reading from FIFO) will block on the while (<FIFO>) until something is written to the fifo file.
Just for some more reference, the Perl Cookbook pages 576-580 has a recipe for working with a fifo. Also, Programming Perl 3rd Edition p.433 describes Named Pipes.
HTH.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Handling program output in real time
by etcshadow (Priest) on Nov 10, 2003 at 19:56 UTC |