File: Exec.pm

package info (click to toggle)
libfilter-perl 1.34-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 304 kB
  • ctags: 120
  • sloc: perl: 596; ansic: 193; makefile: 47
file content (40 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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__

=head1 NAME

Filter::Util::Exec - exec source filter

=head1 SYNOPSIS
 
    use Filter::Util::Exec;

=head1 DESCRIPTION

This module is provides the interface to allow the creation of I<Source
Filters> which use a Unix coprocess.

See L<Filter::exec>, L<Filter::cpp> and L<Filter::sh> for examples of
the use of this module.

=head1 AUTHOR

Paul Marquess 

=head1 DATE

11th December 1995.

=cut