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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:49:58+00:00 2026-05-27T18:49:58+00:00

I have a script and I am trying to elimate bad practices using perlcritic.

  • 0

I have a script and I am trying to elimate bad practices using perlcritic.

One line I have is as follows:

open(my($FREESPCHK), $cmdline ) || &zdie($MSG_PASSTHRU,"Error checking free space of file system.");

This gives this error:
Two-argument “open” used at line xxx, column x. See page 207 of PBP. (Severity: 5)

Any ideas on how to fix it?

  • 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-27T18:49:59+00:00Added an answer on May 27, 2026 at 6:49 pm

    To make Perl Critic shut up, but do no real good at all, just modify the code to:

    open(my $PIPE_FROM_FREESPCHK, "-|", $cmdline)
        || zdie($MSG_PASSTHRU, "Error checking free space of file system.");
    

    Note however that this is absolutely no better in any regard whatsoever from the far more obvious:

    open(my $PIPE_FROM_FREESPCHK, "$cmdline |")
        || zdie($MSG_PASSTHRU, "Error checking free space of file system.");
    

    Because you are not separating out your tokens for calling exec directly. That would look more like this:

    open(my $PIPE_FROM_FREESPCHK, "-|", $cmd_name, @cmd_args)
        || zdie($MSG_PASSTHRU, "Error checking free space of file system.");
    

    The question is whether you are running a shell command or just exec’ing something. If your free check is something like df . 2>/dev/null | awk ...., then you need the full shell. If it is just df, then you don’t.

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

Sidebar

Related Questions

I have a script that reads RSS feeds using fopen & fgets. When trying
I'm trying to have a script automatically transform an xml file into several html
I have a simple script I'm trying to run: <?php print exec('whoami'); $output2 =
I have prepared a r script and trying to apply the same codes in
I have a script that I'm trying to get working. Basically, what I'm trying
I have a python script that is trying to create a directory tree dynamically
I'm trying to make a PHP script, I have the script finished but it
I have an alert script that I am trying to keep from spamming me
I have a fairly large script and am trying to find out, why $(document).on(
Trying to have my PHP script return some SQL table queries. Here's my script

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.