Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Optimizing existing Perl code (in practise)

by Abigail-II (Bishop)
on Aug 19, 2002 at 15:37 UTC ( [id://191205]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $text = do {
            open my $fh => $file or die "open: $!\n";
            local $/;
            <$fh>;
        };
    
  2. or download this
        my $text = `cat $file`;
    
  3. or download this
        system mkdir => -p => $dir;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://191205]
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: (1)
As of 2024-04-25 00:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found