do
- do BLOCK
Not really a function. Returns the value of the last command in the sequence of commands indicated by BLOCK. When modified by the
whileoruntilloop modifier, executes the BLOCK once before testing the loop condition. (On other statements the loop modifiers test the conditional first.)do BLOCKdoes not count as a loop, so the loop control statementsnext,last, orredocannot be used to leave or restart the block. See perlsyn for alternative strategies.
- do EXPR
Uses the value of EXPR as a filename and executes the contents of the file as a Perl script.
- do 'stat.pl';
is largely like
- eval `cat stat.pl`;
except that it's more concise, runs no external processes, keeps track of the current filename for error messages, searches the
@INCdirectories, and updates%INCif the file is found. See @INC in perlvar and %INC in perlvar for these variables. It also differs in that code evaluated withdo FILENAMEcannot see lexicals in the enclosing scope;eval STRINGdoes. It's the same, however, in that it does reparse the file every time you call it, so you probably don't want to do this inside a loop.If
docan read the file but cannot compile it, it returnsundefand sets an error message in$@. Ifdocannot read the file, it returns undef and sets$!to the error. Always check$@first, as compilation could fail in a way that also sets$!. If the file is successfully compiled,doreturns the value of the last expression evaluated.Inclusion of library modules is better done with the
useandrequireoperators, which also do automatic error checking and raise an exception if there's a problem.You might like to use
doto read in a program configuration file. Manual error checking can be done this way: