Я пытаюсь сделать мини-оболочку, которая может выполнять команды, переданные по каналу, что я должен использовать только один канал. Я использую парсер с этими типами и функциями:
typedef struct {
char * filename;
int argc;
char ** argv;
} tcommand;
typedef struct {
int ncommands;
tcommand * commands;
char * redirect_input;
char * redirect_output;
char * redirect_error;
int background;
} tline;
extern tline * tokenize(char *str);
Это мой основной и кодфункции:
int main() {
char buf[1024];
int i, j;
system("clear");
printf("msh>");
while (fgets(buf, 1024, stdin)) {
line = tokenize(buf);
if (line == NULL){
continue;
}
comandos = line->commands;
ncomands = line->ncommands;
if (ncomands == 1) {
if (strcmp(comandos[0].argv[0], "exit") == 0) {
salir();
}
if (strcmp(comandos[0].argv[0], "cd") == 0) {
cd(comandos[0].argc, comandos[0].argv);
}else {
}
}else{
printf("Voy a ejecutar %d comandos\n", ncomands);
tcommand *recorrerComandos = comandos;
int argc = 0;
char **recorrerArgumentos;
for (i = 0; i < ncomands; i++){
argc = recorrerComandos[i].argc;
recorrerArgumentos = recorrerComandos[i].argv;
printf("Comando %d: %s\n",i,recorrerArgumentos[0]);
for(j=1; j < argc; j++){
printf("Argumnento %d: %s\n",j,recorrerArgumentos[j]);
}
printf("***************************************\n");
}
/*This is the call that does not work */
pipes(ncomands, comandos);
}
printf("msh>");
}
printf("\n");
return 0;
}
void proceso(int in, int out, tcommand comando) {
static int i = 0;
i++;
printf("Ejecuto comando %d\n",i);
pid_t pid;
pid = fork();
if (pid == 0) {
if (in != 0) {
dup2(in, 0);
close(in);
}
if (out != 1) {
dup2(out, 1);
close(out);
}
execvp(comando.argv[0], comando.argv);
fprintf(stderr, "Error al ejecutar el comando: %s\n", comandos[0].argv[0]);
exit(errno);
}
}
void pipes(int ncomands, tcommand * comandos) {
int i;
pid_t pid;
int in, fd[2];
in = 0;
for (i = 0; i < ncomands - 1; ++i) {
pipe(fd);
proceso(in, fd[1], comandos[i]);
close(fd[1]);
in = fd[0];
}
if (in != 0)
dup2(in, 0);
execvp(comandos[i].argv[0],comandos[i].argv);
}
Если я запускаю его и ввожу ls | grep hola
, выход будет
msh>ls | grep hola
Voy a ejecutar 2 comandos
Comando 0: ls
***************************************
Comando 1: grep
Argumnento 1: hola
***************************************
Ejecuto comando 1
И я не понимаю, где находится ошибка, которую я сделал.Заранее спасибо