Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: search for a pattern in file without opening the file

by Tanktalus (Canon)
on Jan 29, 2007 at 09:58 UTC ( [id://597053]=note: print w/replies, xml ) Need Help??


in reply to search for a pattern in file without opening the file

Unfortunately, perl is completely missing the 'Telepathy::File' module, last I checked, and will thus need to actually open files to read them, just like every other computer program would.

What do you need to put in another array for post processing? The filename? Maybe something like this:

my @files = grep { open my $fh, '<', $_ or die "Failed to open $_: $!"; my $rc = 0; my $l; while (!$rc && defined($l = <$fh>)) { $rc++ if $l =~ /^source/; } $rc } @arr1;
(Untested.) Maybe. Hard to tell without more info from you.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-26 06:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found