I was tryiing to execute pipe with 2 children. In my code, for some reason when I input "ls" to execute as the command the while(true) loop runs twice (and it does that for almost all the commands which do not need pipe ex: "ls", "ps"):
while (TRUE)
{
type_prompt(); //Type out prompt to the user
read_command(); //Read the command from the user
pipe(fd); //Create a pipe
proc1 = fork();
//printf("%s\n", parameter[0]);
//Child process 1
if (proc1 == 0)
{
//printf("%s\n", parameter[0]);
//close(fd[0]); //process1 doenst need to read from pipe
//dup2(fd[1], STD_OUTPUT);
//close(fd[1]);
dup2(fd[1], fd[0]);
//execvp(test1[0],test1);
execvp(parameter[0], parameter); //Execute the process
}
//Create a second child process
else
{
//Child process 2
proc2 = fork();
if (proc2 == 0)
{
//close(fd[1]);
//dup2(fd[0], STD_INPUT);
//close(fd[0]);
dup2(fd[0],fd[1]);
//execvp(test2[0],test2);
execvp(parameter2[0], parameter2);
}
//Parent process
else
{
close(fd[0]);
close(fd[1]);
waitpid(-1, &status, 0); //Wait for the child to be done
}
}
}