Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8129607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T08:22:27+00:00 2026-06-06T08:22:27+00:00

I have a Perl script that takes user input and creates another script that

  • 0

I have a Perl script that takes user input and creates another script that will be run at a later date. I’m currently going through and writing tests for these scripts and one of the tests that I would like to perform is checking if the generated script compiles successfully (e.g. perl -c <script>.) Is there a way that I can have Perl perform a compile on the generated script without having to spawn another Perl process? I’ve tried searching for answers, but searches just turn up information about compiling Perl scripts into executable programs.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T08:22:28+00:00Added an answer on June 6, 2026 at 8:22 am

    To execute dynamically generated code, use eval function:

    my $script = join /\n/, <main::DATA>;
    eval($script);   # 3
    
    __DATA__
    
    my $a = 1;
    my $b = 2;
    print $a+$b, "\n";
    

    However if you want to just compile or check syntax, then you will not be able to do it within same Perl session.

    Function syntax_ok from library Test::Strict run a syntax check by running perl -c with an external perl interpreter, so I assume there is no internal way.

    Only work-around that may work for you would be:

    my $script = join /\n/, <main::DATA>; 
    eval('return;' . $script); 
    warn $@ if $@;   # syntax error at (eval 1) line 3, near "1
                     # my "
    
    __DATA__ 
    
    my $a = 1
    my $b = 2; 
    print $a+$b, "\n";
    

    In this case, you will be able to check for compilation error(s) using $@, however because the first line of the code is return;, it will not execute.


    Note: Thanks to user mob for helpfull chat and code correction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Perl script that takes about 30 minutes to run, so of
I have a Perl script that takes text values from a MySQL table and
I have a perl cgi script that's fairly resource intensive (takes about 2 seconds
I have a Perl script that will execute three applications. All of it have
I currently have a Perl CGI script that parses incoming XML requests using XML::Simple
Currently I have a perl script that runs forever on my server, checking a
I have a Perl script that requires two command line arguments that takes a
I have a huge Perl script (1500+ lines) that takes about 8 hours to
I have a Perl script that uses WWW::Mechanize to read from a file and
I have a Perl script that launches 2 threads,one for each processor. I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.