Tagged Questions
execvp, is a POSIX specified function from the exec* family, which replaces the current process with one specified. Questions using this tag should be related to the use and semantics of this function.
3
votes
5answers
56 views
Getting stdout from an executed application
Does anyone know how to catch the output (I think its stdout) from execvp instead of the system printing it (in c on linux) in the terminal?
2
votes
1answer
74 views
Cpu affinity inherited by child process
I have a server process that forks many child processes, server process has affinity to cpu core, i don't want that affinity to be inherited by child process (rather os should handle where to run ...
2
votes
1answer
2k views
Error when spawning child process in node.js
I'm trying to get a little ffmpeg converter-service up and running, made pretty good progress so far. But when it comes to spawning the actual ffmpeg process for conversion, i'm hitting a brick wall.
...
2
votes
1answer
399 views
How to create multiple ordered processes using fork() and execvp() in C?
I am trying to create multiple processes using fork() and execvp() calls, but so far I've been unsuccessful. Here is what I am trying to do:
Processes A, B, C should run at the same time. When they ...
2
votes
4answers
457 views
Does control return after “execvp()”?
if(pid == 0)
{
execvp(cmd, args);
// printf("hello"); // apparently, putting this or not does not work.
_exit(-1);
}
else
{
// parent process work
}
"execvp()" replaces the ...
2
votes
3answers
302 views
After execvp returns, why doesn't my program pick up where it left off?
I have a block of code like this that runs as a child thread:
if(someVar == 1){
doSomeStuff;
_exit(0)
}
else
execvp(*(temp->_arguments), temp->_arguments);
printf("I'm done\n");
When I ...
1
vote
5answers
83 views
exec() any command in C
Say in C, I want to call execvp() on any string command. Command can just be:
char command[] = "ls -l";
char command[] = "rm *.txt";
char command[] = "cat makefile";
I want to put this command ...
1
vote
2answers
82 views
Having issues with execvp()
So here is the bit of my code that's giving me problems:
void childProcessHandler(string command){
int argCounter = 0;
for(int i=0; i!=command.size(); i++)
argCounter+=( command.at(i) == ' ');
...
1
vote
1answer
86 views
after fork/execvp control does not return to parent
when i run my code below and type in "ls" at the prompt it runs ls in the terminal but then just sits there and doesnt print my prompt again. How do I get control to go back to the parent process?
...
1
vote
1answer
143 views
why calling cd shell command through system() or execvp() from a child process won't work?
I understand that i am supposed to use chdir() but I just need an explanation as to why calling cd shell command through system or execvp() from a child process would not work? Thanks!!
1
vote
1answer
151 views
execvpe argv to parameter matching syntax help needed
I get "passing argument 2 of ‘execvp’ from incompatible pointer type" and
expected ‘char * const*’ but argument is of type ‘const char **’
I'm wondering what the correct syntax is? Thanks!
int ...
1
vote
1answer
482 views
Building a basic shell, more specifically using execvp()
In my program I am taking user input and parsing it into a 2d char array. The array is declared as:
char parsedText[10][255] = {{""},{""},{""},{""},{""},
{""},{""},{""},{""},{""}};
and ...
1
vote
1answer
712 views
How to get forkpty/execvp() to properly handle redirection and other bash-isms?
I've got a GUI C++ program that takes a shell command from the user, calls forkpty() and execvp() to execute that command in a child process, while the parent (GUI) process reads the child process's ...
1
vote
3answers
1k views
execv, wait, Unix programming, How to wait for a child
Hi I'm working on a unix shell and I'm running into two problems. I was wondering if any of you could help me out. My first problem is that the shell is not waiting for the child process to terminate. ...
1
vote
5answers
7k views
Trying to use execvp() in C with user input in unix
I'm trying to make a program that will prompt the user for a command, then use exec to execute that command.
For instance if they gave me "ls -la" I would have to execute that command. I've tried the ...
0
votes
0answers
17 views
HTTP Keep-Alive Hangs My Process On Linux 2.6.30 CentOS
I am developing a news crawler that wakes up to watch about 200 select news sites. Since my typical crawling requires at least 3 different but successive connections to each site, I am trying to send ...
0
votes
2answers
29 views
Handling arguments array of execvp?
When I call execvp, for example execvp(echo, b) where b is an array of arguments for the command a, will changing this array later affect the execvp call made previously? When I try calling ...
0
votes
0answers
19 views
cpp stream redirection few times (using pipe)
how to make a few redriction from one command to another? Fe.
ls -a | wc | wc | wc
I done one
ls -a | wc
and it works, but i can't do with more, maybe it's because i need wait for specifed ...
0
votes
2answers
130 views
grep doesn't work in custom shell
I'm trying to write a shell in c and it mostly works except for grep. Whenever I give a grep command in the shell, it just doesn't output anything. Here is the part of the code I use to create a new ...
0
votes
4answers
274 views
getting shell command from user input and executing C program
currently working on program which recieves input command for linux shell and executing them creating child process.
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
...
0
votes
1answer
140 views
How to pass a vector to execvp
I want to pass a vector in as the second argument to execvp. Is it possible?
0
votes
2answers
125 views
insert unknown command to execvp()
hi
if i'm passing an unknown command to execvp i'm getting this error in the errno :
"no such file or directory"
when i should get this error:
"command not found"
how can i get the second error?
0
votes
2answers
74 views
execute commands with options in a c program
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 ...
0
votes
1answer
273 views
Where should I use wait and waitpid in this code?
I have written a program which simulates '$ls -l | wc -c ' like commands using pipes.
Now I am not able to find out where should I use wait or waitpid in this code.
Also where should I close pipes ?
...
0
votes
2answers
350 views
execvp() causing EXC_SOFTWARE and bizarre cin.getline loop?
I'm running some code on Mac OSX 10.6.6 and XCode 3.2.4 and I have some pretty standard code: fork(), if pid == 0 then execvp with a command and the args (the args include the command as the first ...
0
votes
2answers
353 views
C - passing an unknown command into execvp()
I'm writing a fake shell, where I create a child process and then call execvp(). In the normal shell, when I enter an unknown command such as 'hello' it returns 'hello: Command not found.' However, ...
0
votes
4answers
291 views
Waiting for execvp in main
int main()
{
...
if(!fork())
{
execvp(cmdName,cmdParam);
}
printf("In main()...");
return(0);
}
Assuming I have correctly passed the cmdName & cmdParam ...
0
votes
1answer
61 views
char ** nargv being empty but do not know why
I am trying to do something quite easy: fill an char** with arguments I want to use in a execvp call in C.
This is how I am doing:
if(argc >=1)
{
*nargv = "--action";
...
-1
votes
1answer
63 views
Emulating execvp - Is There a Better Way To Do This?
I'm currently wrapping a command line tool (espeak) with Tcl/Tk, and I have figured this out so far:
load ./extensions/system.so
package require Tk
package require Tclx
set chid 0
proc kill {id} {
...