Help for this page

Select Code to Download


  1. or download this
    my (%hsh, @keepers);
    @hsh{@arr} = ();
    ...
    while (<>) {
        push @keepers, $_ unless grep {!exists $hsh{$_}} split;
    }