in reply to Re: Use of do() to run lots of perl scripts
in thread Use of do() to run lots of perl scripts

do is just a glorified eval `cat FILE` mechanism.

... without creating a sub-process and running cat, of course.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

Replies are listed 'Best First'.
Re^3: Use of do() to run lots of perl scripts
by LanX (Saint) on Mar 03, 2021 at 18:37 UTC
    of course that's why I said "mechanism" and linked to the docs.

    do "./stat.pl" is largely like

    eval `cat stat.pl`;

    except that it's more concise, runs no external processes, and keeps track of the current filename for error messages. It also differs in that code evaluated with do FILE cannot see lexicals in the enclosing scope; eval STRING does.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery