| Filter documentation | Contained in the Filter distribution. |
Filter::Util::Exec - exec source filter
use Filter::Util::Exec;
This module is provides the interface to allow the creation of Source Filters which use a Unix coprocess.
See Filter::exec, Filter::cpp and Filter::sh for examples of the use of this module.
Paul Marquess
11th December 1995.
| Filter documentation | Contained in the Filter distribution. |
package Filter::Util::Exec ; require 5.002 ; require DynaLoader; use strict; use warnings; use vars qw(@ISA $VERSION) ; @ISA = qw(DynaLoader); $VERSION = "1.03" ; bootstrap Filter::Util::Exec ; 1 ; __END__