如何使用 GetOptions 实用程序来处理“可选” Perl 中的命令行参数?

发布于 2024-11-18 04:27:15 字数 586 浏览 3 评论 0原文

有许多 Perl 教程解释如何使用 GetOptions 实用程序仅处理预期的命令行参数,否则退出并显示适当的消息。

在我的要求中,我有以下可选的命令行参数,例如

  • -z zip_dir_path :压缩输出
  • -h :显示帮助。

我尝试了一些与 GetOptions 的组合,但对我来说不起作用。
所以我的问题是:如何使用 GetOptions 来处理这个需求?

编辑:-z 需要“zip 目录路径”

编辑2: 我的脚本具有以下强制命令行参数:

  • -in input_dir_path :输入目录
  • -out output_dir_path :输出目录

这是我的代码:

my %args;
GetOptions(\%args,
"in=s",
"out=s"
) or die &usage();

die "Missing -in!" unless $args{in};
die "Missing -out!" unless $args{out};

希望此编辑增加更多清晰度。

There are many Perl tutorials explaining how to use GetOptions utility to process only the command-line arguments which are expected, else exit with an appropriate message.

In my requirement I have following optional command-line arguments, like,

  • -z zip_dir_path : zip the output
  • -h : show help.

I tried few combinations with GetOptions which did not work for me.
So my question is: How to use GetOptions to handle this requirement?

EDIT: -z needs 'zip directory path'

EDIT2:
My script has following compulsory command-line arguments:

  • -in input_dir_path : Input directory
  • -out output_dir_path : Output directory

Here's my code:

my %args;
GetOptions(\%args,
"in=s",
"out=s"
) or die &usage();

die "Missing -in!" unless $args{in};
die "Missing -out!" unless $args{out};

Hope this EDIT adds more clarity.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

亢潮 2024-11-25 04:27:15

A :(冒号) 可以是用于指示可选选项:

#!/usr/bin/env perl

use strict;
use warnings;

use Getopt::Long;

my ( $zip, $help, $input_dir, $output_dir );

GetOptions(
    'z:s'   => \$zip,
    'h'     => \$help,
    'in=s'  => \$input_dir,
    'out=s' => \$output_dir,
);

A : (colon) can be used to indicate optional options:

#!/usr/bin/env perl

use strict;
use warnings;

use Getopt::Long;

my ( $zip, $help, $input_dir, $output_dir );

GetOptions(
    'z:s'   => \$zip,
    'h'     => \$help,
    'in=s'  => \$input_dir,
    'out=s' => \$output_dir,
);
嗫嚅 2024-11-25 04:27:15

从文档中:

   : type [ desttype ]
       Like "=", but designates the argument as optional.  If omitted, an
       empty string will be assigned to string values options, and the
       value zero to numeric options.

如果您指定并检查空字符串,您就知道用户未指定哪些字符串。

From the documentation:

   : type [ desttype ]
       Like "=", but designates the argument as optional.  If omitted, an
       empty string will be assigned to string values options, and the
       value zero to numeric options.

If you specify that and check for the empty string, you know which ones the user did not specify.

弱骨蛰伏 2024-11-25 04:27:15

应根据您获得的输入参数将 $zip_output$show_help 的值设置为 10在命令行中。

use strict;
use warnings;

use Getopt::Long;

my $zip_output;
my $show_help;

GetOptions("z" => \$zip, "h" => \$show_help);

This should set to 1 or 0 the values of $zip_output and $show_help based on what input arguments you get in command line.

use strict;
use warnings;

use Getopt::Long;

my $zip_output;
my $show_help;

GetOptions("z" => \$zip, "h" => \$show_help);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文