in reply to perl find module

use File::Find::Rule; my $finder = File::Find::Rule->file; $finder->name( qr/\.master$/ ); my @abs_files = $finder->in('/home/myself');
The interface can be a little funny, because the next example does the same..
use File::Find::Rule; my @abs_files = File::Find::Rule->file->name( qr/\.master$/ )->in('/ho +me/myself');
Anyhow, this is pretty much the same as in the examples for File::Find::Rule

Replies are listed 'Best First'.
Re^2: perl find module
by Anonymous Monk on Oct 27, 2009 at 15:37 UTC
    findrule dir1 dir2 dir3 -file -name ( .master )