Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Practical example of "Is Perl code maintainable"

by eyepopslikeamosquito (Archbishop)
on Aug 13, 2007 at 07:44 UTC ( [id://632152]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub file_mode {
      my ($file) = @_;
    ...
              $dummy, $dummy, $dummy, $dummy) = stat($file);
      return $mode;
    }
    
  2. or download this
    sub file_mode {
      -f shift or return -1;
      return (stat(_))[2];
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://632152]
Approved by Corion
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found