in reply to Re: Passing file names to search directories
in thread Passing file names to search directories
my @filenames = map { $_->{'filename'} } @{ $fnames };
find( { wanted => sub { push @files, $_ unless $_ eq '.' || $_ eq '..' + || $_ !~ m/@filenames$/} , no_chdir => 1 }, @dirs);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Passing file names to search directories
by Anonymous Monk on Dec 28, 2016 at 21:07 UTC |