Chinaunix
标题:
perl怎么给cpp传递参数
[打印本页]
作者:
很宅的男
时间:
2018-02-06 17:11
标题:
perl怎么给cpp传递参数
大家好,现在有一个已经编译好的cpp程序,我现在想写一个perl脚本给这个程序传递几个参数,请问大家知道怎么处理吗?
作者:
jason680
时间:
2018-02-06 20:53
http://bbs.chinaunix.net/thread-4292232-1-1.html
http://bbs.chinaunix.net/thread-4267967-1-1.html
作者:
523066680
时间:
2018-02-06 21:51
如果是基于函数的传参,那么可能就是需要 Inline::CPP
https://metacpan.org/release/Inline-CPP
作者:
jeppeter
时间:
2018-02-07 09:23
回复
1#
很宅的男
use strict;
use IPC::Open3;
my $pid = open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR, 'cat')
or die "open3() failed $!";
my $r;
for(my $i=1;$i<10;$i++) {
print CHLD_IN "$i\n";
$r = <CHLD_OUT>;
print "Got $r from child\n";
}
复制代码
这个例子可以满足你的要求,上面的是进行cat的处理。
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2