Classic C. Mit Rohren in execvp Funktion, stdin und stdout Umleitung

Möchte ich simulieren bash auf meinem Linux-C-Programm durch Rohre und execvp Funktion. e.g

ls -l | wc -l  

Dort ist mein Programm:

if(pipe(des_p) == -1) {perror("Failed to create pipe");}

if(fork() == 0) {    //first fork
  close(1);          //closing stdout
  dup(des_p[1]);     //replacing stdout with pipe write 
  close(des_p[0]);   //closing pipe read
  close(des_p[1]);   //closing pipe write

  if(execvp(bash_args[0], bash_args)) //contains ls -l
    /* error checking */
}
else {
  if(fork() == 0) {  //creating 2nd child
    close(0);        //closing stdin
    dup(des_p[0]);   //replacing stdin with pipe read
    close(des_p[1]); //closing pipe write
    close(des_p[0]); //closing pipe read

    if(execvp(bash_args[another_place], bash_args)) //contains wc -l
      /* error checking */
  }

  close(des_p[0]);
  close(des_p[1]);
  wait(0);
  wait(0);
}

Dieser code tatsächlich ausgeführt wird, aber nicht das richtige.
Was ist falsch an diesem code? Das funktioniert nicht und ich habe keine Ahnung, warum.

InformationsquelleAutor krzakov | 2012-12-10

Schreibe einen Kommentar