This code is supposed to print "Output from 'ls -l':" and append the result of 'ls -l', but it doesn't... Does anyone has a clue whats wrong with this?
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
void readStringFromFile (int file, char * readbuffer) {
int nbytes = read(file, readbuffer, sizeof(readbuffer));
readbuffer[nbytes] = 0;
}
int main(int argc, char const *argv[])
{
int fd[2];
pipe(fd);
if (fork()==0)//child process
{
close(fd[0]);
dup2(fd[1],1);
int retValue = execl("/bin/ls","ls","-l", NULL);
printf("Exec failed: retValue = %d\n",retValue);
} else
{
int status;
close(fd[1]);
wait(&status);
char readbuffer[1024];
readStringFromFile(fd[0],readbuffer);
printf("Output from 'ls -l':\n %s", readbuffer);
}
}