Help for this page

Select Code to Download


  1. or download this
     
    #!/usr/bin/perl
    
    ...
    
        }
    }
    
  2. or download this
    column relationship value filter_or_append order
    a      <=           0.3   filter           1
    b      =            abc   append           3
    c      <=           0.3   filter           2
    
  3. or download this
    if ($hash{$filter[0]->[0]} le $filter[0]->[2])
            {
                print OUTFILE $line, "\n";
            }
    
  4. or download this
     if ($hash{$filter[0]->[0]} $filter[0]->[1] $filter[0]->[2])
            {
                print OUTFILE $line, "\n";
            }