Top "Exec" questions

This tag refers to the starting of another, subsidiary program.

execvp failing with multiple or no arguments

I'm working on a pretty basic UNIX shell in C. In this project I am attempting to use fork() and …

c shell arguments exec execvp
Java Runtime.getRuntime().exec() fails after calling it several hundred times

I have a Java program that executes Runtime.getRuntime().exec("ls -l"); many times, once for each directory in the …

java android exec runtime.exec
execvp/fork -- how to catch unsuccessful executions?

Right now I'm writing a C program that must execute a child process. I'm not doing multiple child processes simultaneously …

c exec fork execvp