billie_t has asked for the wisdom of the Perl Monks concerning the following question:
use File::Find; my $name = 1; find(\&Wanted, $dir); sub Wanted { /$name\.*/; if undef { $name++; return; } else { open(FILE, $_); my @lines = <FILE>; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Processing directories (again) with File::Find
by submersible_toaster (Chaplain) on Jun 16, 2003 at 07:48 UTC | |
|
Re: Processing directories (again) with File::Find
by Skeeve (Parson) on Jun 16, 2003 at 06:23 UTC | |
by billie_t (Sexton) on Jun 16, 2003 at 07:22 UTC | |
by Skeeve (Parson) on Jun 16, 2003 at 07:30 UTC | |
by billie_t (Sexton) on Jun 17, 2003 at 03:51 UTC | |
|
Re: Processing directories (again) with File::Find
by TomDLux (Vicar) on Jun 16, 2003 at 18:36 UTC |