Help for this page

Select Code to Download


  1. or download this
    foreach my $file2 (@file2only) {
      unless ( ( $file2 =~ "tmp" ) or ( $file2 =~ "temp" ) or ( $file2 =~ 
    +"recycler" ) or ( $file2 =~ "history" ) ) {
        print OUT $file2;
      }
    }
    
  2. or download this
    
    foreach my $file2 (@file2only) {
    ...
        print OUT $file2;
      }
    }
    
  3. or download this
    foreach my $file2 (@file2only) {
      unless (    ( $file2 eq "tmp" )
    ...
        print OUT $file2;
      }
    }
    
  4. or download this
    foreach my $file2 (@file2only) {
      unless ( $file2 =~ /^tmp|temp|recycler|history$/ ) {
        print OUT $file2;
      }
    }