Воть ... воть етя программа .. :-))
#include <sys/types.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h> // for exit(int status);
int main(int argc, char *argv[])
{ int fds[2];
pipe(fds);
pid_t var_pid = fork();
if ( var_pid == -1 )
{ fprintf(stderr, "Can't fork !\n");
exit(1);
} if ( var_pid == 0 ) // child process
{ close(fds[0]); // close copy of file fd
dup2(STDOUT_FILENO, fds[1]);
const char *my_args[] = { "/usr/local/bin/mysql", "-e",
"show tables from test", NULL
};
execv(my_args[0], my_args);
fprintf(stderr, "CAN'T START MySQL !!!\n");
exit(1);
}
close(fds[1]);
int child_status = -1;
wait(&child_status);
child_status = WEXITSTATUS(child_status);
// read output ( child program )
// fds[0] - is a file descriptor !
// You can also use read(fd, buffer, sizeof(buffer);
// where fd == fd[0];
return 0;
}
Мозет здесь и есть незнацительные осыбки, я не проверял прогу ... но идею вы долзны понять :-)