Help for this page

Select Code to Download


  1. or download this
    my @name_array = qw(fred joe john frank );
    for my $file(@file) {
    ...
            print OUT $line if ( $match );
        }
    }
    
  2. or download this
    my %unique;
    if ( $have_a_line_to_print ) {
    ...
    for( sort keys %unique ) {
        print;
    }