in reply to Re^2: pattern search in all the files in a directory
in thread pattern search in all the files in a directory

PerlMonks is not a code-writing service. We're generally happy to give you advice and ideas, but we're not here to do your job for you for free. I (and no doubt many other monks) are available for hireif that is what you need.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: pattern search in all the files in a directory