Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Using grep and glob to find directories containing file

by arnaud99 (Beadle)
on Feb 06, 2013 at 12:06 UTC ( [id://1017399]=note: print w/replies, xml ) Need Help??


in reply to Using grep and glob to find directories containing file

Hi, I have just noticed your post and would like to propose an alternative approach. It uses the File::Find::Rule package and simplify things (in my view). This is running on perl 5.16.0
use strict; use warnings; use autodie; use File::Find::Rule; my @f_files = File::Find::Rule ->file ->name(qr/^f.*$/) ->in(qw(/dir1 /dir2 /dir3 )); foreach (@f_files) { print "$_\n"; }
The output looks like:
$ perl find_f_files.pl /dir1/f2.dat /dir1/f.dat /dir1/subdir1/f2.dat /dir1/subdir1/f.dat /dir3/subdir3/f3.dat
I hope this helps.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1017399]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-25 20:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found