Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

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

by perl-diddler (Chaplain)
on Jan 29, 2007 at 22:38 UTC ( [id://597208]=note: print w/replies, xml ) Need Help??


in reply to Re: search for a pattern in file without opening the file
in thread search for a pattern in file without opening the file

In the spirit of "thinking outside the box"...*cough*...

You would need to:
1) know what type of file-system your files reside on.
2) Open the device (note: not opening the file!)
3) interpret the file system structure to find the blocks corresponding to your file on disk
4) retrieve the file blocks corresponding to the file and perform your search on the data in memory.
---
Of course you can search multiple files on the same disk, using the same device handle, so of course you save yourself the overhead of multiple "open" calls.

Note: this likely would not work if the file was a remote (networked) file.
Note 2: This would likely be quite painful, but if you're into that sort of thing...:-)

As others have said, within the definition of your problem is an "inherent" open to be able to look into the contents of the file. What are you trying to do that you want to avoid opening the file in perl?

FWIW, I'd change Ted's answer, above, to use "pcregrep" instead of "grep" to maintain use of perl-compatible regular expressions :-).

p.s. -- sometimes you just have to put on your hat of "literalness" :-)

  • Comment on Re^2: search for a pattern in file without opening the file

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-24 22:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found