in reply to perl find module
The interface can be a little funny, because the next example does the same..use File::Find::Rule; my $finder = File::Find::Rule->file; $finder->name( qr/\.master$/ ); my @abs_files = $finder->in('/home/myself');
Anyhow, this is pretty much the same as in the examples for File::Find::Ruleuse File::Find::Rule; my @abs_files = File::Find::Rule->file->name( qr/\.master$/ )->in('/ho +me/myself');
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: perl find module
by Anonymous Monk on Oct 27, 2009 at 15:37 UTC |