I'm trying to execute a commande with arguments in a c program. For example when the user execute my program with: "./a.out ls -la"
The program should execute ls with the la options.
But I don't know how to do that.
My program use a fork.
I try this way :
pid = fork();
if(pid == 0){
execvp(argv[1], &argv[2]);
}else{
wait(NULL);
}
But it does not work.
I want to pass as a second argument of execvp the array with the args passing in the command but i'm a little confuse with pointers (and so more with pointer of pointers :s) .
I know this souldn't work because of the dash in arguments but even if I don't use the dash, the program only launch the 'ls' without taking care of the 'la' options.
If someone could help me I would be happy to know the good way to do.
Thank you.