有没有办法直接传递 sec (简单事件相关器),如下所示:
$ sec -conf=exmaple_config.conf -input="The text which i want to process"
我有一个c程序,我必须将一些字符串传递给 sec 来处理它并再次接收结果。就是这样:
#include <stdio.h>
int main(void)
{
char* string_to_prcs = foo();
char command[200];
sprintf(command, "sec -conf=example_config.conf -input=\"%s\"", string_to_prcs);
system(command);
// do other stuff
}
先谢谢。