Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: is perl the best tool for this job?(emphatically Yes!)

by BrowserUk (Patriarch)
on Oct 19, 2003 at 16:08 UTC ( [id://300393]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    open F, '<', 'e:\hugefile' or die $^E;
    binmode F;
    ...
    Sun Oct 19 16:00:32 2003
    Sun Oct 19 16:01:21 2003
    
  2. or download this
    my $file = do{ local $/=\(100$1024*1204); <FILE> };
    
  3. or download this
    my $file;
    {
        local $/ = \(100*1024*1024);
        $file = <FILE>;
    }
    
  4. or download this
    #! perl -slw
    use strict;
    ...
    Slurping...          Mon Oct 20 00:29:21 2003
    Slurped. Searching...Mon Oct 20 00:29:26 2003
    Searched.            Mon Oct 20 00:29:30 2003
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 20:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found