Help for this page

Select Code to Download


  1. or download this
    open my $idx, '<', 'index.file' or die "Can't open 'index.file' for re
    +ading: $!";
    my %index;
    ...
        chomp;
        $index{$_} = 1;
    }
    
  2. or download this
    while (<$in>) {
        if ($index{$.}){
    ...
        }
        print $tmp $_;
    }