直接传递sec(简单事件相关器)输入

时间:2016-03-15 07:14:47

标签: c shell ubuntu input

有没有办法直接传递 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
}

先谢谢。

0 个答案:

没有答案