私は次のコードドラフトを持っています。fork()の後に子プロセスにコマンドライン引数を渡す方法
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("usage: %i filename", argc);
pid_t pID = fork();
if (pID == 0) // child
{
// Code only executed by child process
printf("Child PID: %i", pID);
int file = open("/tmp/rtail", O_CREAT | O_WRONLY);
//Now we redirect standard output to the file using dup2
dup2(file,1);
char tmp[30];
sprintf(tmp, "cat `tail -f %s`", argv[1]);
}
else if (pID < 0) // failed to fork
{
printf("Failed to fork");
exit(1);
// Throw exception
}
else // parent
{
}
// Code executed by both parent and child.
return 0;
}
子プロセスにコマンドライン引数を渡すにはどうすればよいですか?例えば、./app alch.txt
実行している私は
sprintf(tmp, "cat `tail -f %s`", argv[1]);
はtmpに
cat `tail -f alch.txt`
生成します。
あなたはそれをやっているのとまったく同じですか?あなたのコードは問題ありません。あなたは何を持っているのですか? –