简体   繁体   English

为什么 IPC::System::Simple(capture) 不适用于 arguments

[英]Why IPC::System::Simple(capture) is not working with arguments

I am trying to call a second script from the main script.我正在尝试从主脚本中调用第二个脚本。 When I am passing the argument in the command itself using capture, it's working.当我使用捕获在命令本身中传递参数时,它正在工作。 But when I am trying to send the command and arguments separately in capture function it's giving me an error that it can't find the specified file.但是,当我尝试在捕获 function 中分别发送命令和 arguments 时,它给我一个错误,它找不到指定的文件。

Second script第二个脚本

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

my $word= $ARGV[0];

my $crpyt = "$word crypted";
print "$crpyt\n";

my $decrypt = "$word decrypted";
print "$decrypt\n";

main.pl主文件

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

use IPC::System::Simple qw(capture capturex);

my $cmd= 'perl xyz.pl Hello';
my @arr = capture($cmd);

print "$arr[0]";
print "$arr[1]\n";

This is working Output:这是工作Output:

Hello crypted
Hello decrypted

BUT main.pl但是main.pl

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

use IPC::System::Simple qw(capture capturex);

my $cmd= 'perl xyz.pl';
my @arg=("Hello");
my @arr = capture($cmd,@arg);

print "$arr[0]";
print "$arr[1]\n";

This is not working.这是行不通的。 It says "perl xyz.pl" failed to start: "The system cannot find the file specified" at main.pl line 11它说"perl xyz.pl" failed to start: "The system cannot find the file specified" at main.pl line 11

If you only pass a single scalar, capture expects it to be a shell command.如果您只传递一个标量,则capture预计它是 shell 命令。

As such, capture('perl xyz.pl Hello') works.因此, capture('perl xyz.pl Hello')有效。

If you pass multiple scalars, capture expects the first to be a path to a program to execute.如果您传递多个标量,则capture期望第一个是要执行的程序的路径。 The rest are passed as arguments. rest 作为 arguments 传递。

As such, capture('perl xyz.pl', 'Hello') doesn't work.因此, capture('perl xyz.pl', 'Hello')不起作用。


You could use你可以使用

use IPC::System::Simple qw( capture );

my @cmd = ( 'perl', 'xyz.pl', 'Hello' );
capture(@cmd)

But you never want to use capture unless you pass a single scalar that's a shell command.但是你永远不想使用capture ,除非你传递一个单一的标量,即 shell 命令。 Use capturex when passing a path and arguments.传递路径和capturex时使用 capturex。

use IPC::System::Simple qw( capturex );

my @cmd = ( 'perl', 'xyz.pl', 'Hello' );
capturex(@cmd)

But let's say you get the string perl xyz.pl from elsewhere.但是,假设您从其他地方获得字符串perl xyz.pl A shell needs to be invoked, so we need to convert the arguments in to shell literals.需要调用 shell,因此我们需要将 arguments 转换为 shell 文字。

use IPC::System::Simple qw( capture );
use String::ShellQuote  qw( shell_quote );

my $cmd = 'perl xyz.pl';
my @extra_args = 'Hello';
my $full_cmd = $cmd . ' ' . shell_quote(@extra_args);
capture($cmd)

Alternatively,或者,

use IPC::System::Simple qw( capturex );

my $cmd = 'perl xyz.pl';
my @extra_args = 'Hello';
capturex('sh', '-c', 'eval $0 "$@"', $cmd, @extra_args)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM