mkfifo fifo1
mkfifo fifo2
mkfifo fifo3
xterm -e bash -c "cat <fifo1 & tee fifo2 fifo3" &
xterm -e bash -c "cat <fifo2 & tee fifo1 fifo3" &
xterm -e bash -c "cat <fifo3 & tee fifo1 fifo2" &
知道如何在c编程中执行上述unix命令。 我尝试使用execl,但似乎不起作用。 提前谢谢。
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main(){
int pid;
char parmList[100];
int i=1;
sprintf(parmList,"-e bash -c {cat <fifo%d & tee fifo%d fifo%d}",i,i+1,i+2);
if ((pid = fork()) == -1)
perror("fork error");
else if (pid == 0)
{
execl("/usr/bin/xterm","xterm",parmList,NULL);
}
return 0;
}
答案 0 :(得分:1)
使用execv
系统调用(execv man page)
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main(){
int pid;
int i=1;
char command[100];
char * args[] = {
"-e",
"bash",
"-c",
NULL,
NULL
};
sprintf(command, "{cat <fifo%d & tee fifo%d fifo%d}", i, i+1, i+2);
args[3] = command;
if ((pid = fork()) == -1)
perror("fork error");
else if (pid == 0)
execv("/usr/bin/xterm", args);
return 0;
}