in reply to searching a string in many files
Check out the File::Find::Rule docs for more info on this fantabulous module.use File::Find::Rule; my @files = find( file => name => 'kn', grep => qr/10450676/, in => [ glob('nc05*/') ] );
_________
broquaint
|
|---|