Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    package GlobPack;
    ...
        my $self = shift;
        print while (<$self>);
    }
    
  2. or download this
    package main;
    
    my $fileread = GlobPack->new('globpack.pl') || die "Can't get the glob
    +ject.\n";
    
    $fileread->read();