X7ROOT File Manager
Current Path:
/usr/share/doc/perl-Filter-1.49/examples/closure
usr
/
share
/
doc
/
perl-Filter-1.49
/
examples
/
closure
/
📁
..
📄
Count.pm
(471 B)
📄
Decompress.pm
(626 B)
📄
Include.pm
(617 B)
📄
Joe2Jim.pm
(295 B)
📄
NewSubst.pm
(673 B)
📄
Subst.pm
(384 B)
📄
UUdecode.pm
(1.02 KB)
Editing: Include.pm
package Include ; use Filter::Util::Call ; use IO::File ; use Carp ; sub import { my ($self) = shift ; my ($filename) = shift ; my $fh = new IO::File "<$filename" or croak "Cannot open file '$filename': $!" ; my $first_time = 1 ; my ($orig_filename, $orig_line) = (caller)[1,2] ; ++ $orig_line ; filter_add( sub { $_ = <$fh> ; if ($first_time) { $_ = "#line 1 $filename\n$_" ; $first_time = 0 ; } if ($fh->eof) { $fh->close ; $_ .= "#line $orig_line $orig_filename\n" ; filter_del() ; } 1 ; }) } 1 ;
Upload File
Create Folder