http://qs1969.pair.com?node_id=11123603


in reply to Preprocessing print statements

You can fork a new process for doing the filtering in parallel:
use POSIX; ... my $pid = open(STDOUT, "|-") // die "unable to fork new process"; unless ($pid) { while (<>) { print if /the-regular-expression-goes-here/ } POSIX::_exit(0); } # after this point, STDOUT is filtered

Update: That works in Unix/Linux systems. I am not sure about Windows, but probably not!