- or download this
sub wanted {
print OUT "$File::Find::dir/";
print OUT "$_\n";
}
- or download this
$File::Find::dir = /some/path/
$_ = foo.ext
$File::Find::name = /some/path/foo.ext
- or download this
print OUT "$File::Find::name";
- or download this
###selection criteria is a set of easy Regular Expressions:
foreach my $file1(@file1only) {
...
print OUT $file1;
}
}
- or download this
###selection criteria is a set of easy Regular Expressions:
foreach my $file1(@file1only) {
...
print OUT $file1;
}
}
- or download this
print OUT "LOWERCASING ALL FILE AND PATHNAMES BEFORE COMPARING.\n";
print "\n\n";
- or download this
print OUT "IGNORING FILES WITH Tmp OR Temp IN PATHNAME.\n";
- or download this
$file1 =~ /\btemp\W\w)/; # temp is not the filename