#!/usr/bin/perl use warnings; use strict; $|++; open PIPE1, "./blackbox.pl |"; while ( ) { # ...Filter and munge $_ print $_; } close PIPE1;