Help for this page

Select Code to Download


  1. or download this
    foreach my $file2(@file2only) {
        unless (($file2 =~ "tmp") 
    ...
            print OUT $file2;
            }
    }
    
  2. or download this
    foreach my $file2 (@file2only) {
        my $flag = undef;
    ...
        }
        print OUT $file2 unless ($flag eq 'skip');
    }