假设我有以下 Perl 脚本:
use 5.010;
use strict;
use warnings;
use Getopt::Std;
use vars qw($opt_i $opt_o $opt_m);
&getopts('i:o:m:');
say $opt_m
如果我调用这个脚本
perl script.pl -i text -o string -m hello how are you, world?
我没有得到“你好,世界,你好吗?” 在$opt_m
. 如何捕获由空格分隔的字符串作为脚本的开关参数之一?