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 7686243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:26:06+00:00 2026-05-31T19:26:06+00:00

I’m writing a shell script that before running needs to check that system Perl

  • 0

I’m writing a shell script that before running needs to check that system Perl updates haven’t broken the Perl scripts being glued together. I keep getting what looks like a parsing error. To reproduce this on the command line:

$ module='Scalar::Util'; check="perl -e 'use $module' 2>&1"; check_status=`$check`; echo $check
Can't find string terminator "'" anywhere before EOF at -e line 1.
perl -e 'use Scalar::Util' 2>&1

Anyone see what I’m doing wrong?

Thanks.

  • 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-05-31T19:26:08+00:00Added an answer on May 31, 2026 at 7:26 pm

    Handling arguments with spaces in them like that is tricky at best; try to avoid doing so.

    You should also use more vertical space; ‘one-liners’ is a derogatory term, not a term of approval.

    You have:

    module='Scalar::Util'
    check="perl -e 'use $module' 2>&1"
    check_status=`$check`
    echo $check
    

    The trouble is that when the shell processes:

    `$check`
    

    it splits the string at word boundaries, yielding arguments:

    perl
    -e
    'use
    Scalar::Util'
    2>&1
    

    Note that the I/O redirection is treated as an argument! To avoid the problem, in this context, you can use:

    module='Scalar::Util'
    check="perl -e 'use $module' 2>&1"
    check_status=`eval $check`
    echo $check
    

    The eval forces the shell to reparse the line, getting no errors.

    Be careful; simply using eval is not always the solution to these woes. In particular, if you have backslashes, dollars or backticks around (or more quotes), then eval can simply compound the problems.

    One way of checking whether a module exists in Perl is:

    perl -M$module -e "print $module::VERSION . '\n'"
    

    That gives the module’s version number (and complicates the string). You can also simply do:

    perl -M$module -e exit
    

    which will exit with status 0 if the module is loaded and spew forth errors etc if it is not.

    $  perl -MSalar::Util -e exit
    Can't locate Salar/Util.pm in @INC (@INC contains: /Users/jleffler/Perl/v5.14.1-64/lib/perl5/site_perl/5.14.1/darwin-2level /Users/jleffler/Perl/v5.14.1-64/lib/perl5/site_perl/5.14.1 /Users/jleffler/Perl/v5.14.1-64/lib/perl5/5.14.1/darwin-2level /Users/jleffler/Perl/v5.14.1-64/lib/perl5/5.14.1 .).
    BEGIN failed--compilation aborted.
    $ echo $?
    2
    $
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am currently running into a problem where an element is coming back from
I am doing a simple coin flipping experiment for class that involves flipping a
I need a function that will clean a strings' special characters. I do NOT

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.