2

我尝试运行简单的脚本

use IPC::Run qw (run timeout); 
run "date", \$in, \$out, \$err, timeout( 10 ) or die "err: $?";
print "Date is $out \n";

但它失败并出现错误:

Unexpected SCALAR(0x1e52f80) in harness() parameter 3 at t.pl line 2
Unexpected SCALAR(0x1e52f08) in harness() parameter 4 at t.pl line 2

我使用 perl v5.14 和 v5.10,尝试不同的服务器。过程 IPC::Run::harness(由“run”命令使用)通过大“if”语句解析循环中的所有传入参数。但是在这个语句中没有 sclar values 的规则,所以 \$out 打破了这个命令。

4

1 回答 1

4

第一个参数IPC::Run::run应该是数组引用,而不是标量。所以这有效:

run ["date"], \$in, \$out, \$err, timeout( 10 ) or die "err: $?";

这有点难以理解,但在IPC::Run::harness子例程中,当第一个参数是数组引用时,它会设置一些变量和标志,以便正确处理其余参数。

于 2013-10-25T19:30:33.017 回答