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.
0
votes
0answers
45 views
C Inter Process Communication
I am trying to write a program which take n number of processes and pass the output of each parent process to the input to the the child .
I guess that the problem is in closing the pipes .
One ...
1
vote
1answer
55 views
Add chars to existing array of chars/ char pointers?
Currently I am reading in a line of strings and parsing it. I'm using the following variables to do so: char **parsed and char *parsed_arguments[64]. Here is the code I use to parse it:
char ...
0
votes
1answer
39 views
execvp won't execute a command
I am trying to run a piece of code which will execute a few UNIX commands, these commands are stored in the array lineArray which for instance: lineArray = {"ls -l", "ls", "pwd", NULL};
the problem ...
1
vote
2answers
83 views
C Programming 2 pipes
I want to set up 2 pipes in my program. I have 1 pipe working fine, but I don't know where to place the second pipe.
The pseudo code of my setup is shown below,
Here is it with curly braces sorry ...
0
votes
1answer
28 views
exevp skips over all code until wait call in c
I am trying to execute a file using fork and execvp, however I am encountering some errors. I have not found any solutions to the problem I am having here online, since I don't get any errors from my ...
1
vote
1answer
40 views
How to make find -name to return error if no file found
I have tried really hard but could not figure out a way to print an error if
find -name \"filename"
does not find any file. The code I am using so far is as follows:
char *argv[];
...
0
votes
0answers
29 views
Including ability of execution of pipes to my own shell
I am given an assignment to create my own shell based on Linux shell. I downloaded a code and i can understand how it is implemented. But the problem is it does not include the way of executing ...
2
votes
4answers
101 views
C++ const char* To const char* const
I am currently writing an assignment for my class that is supposed to act as a very basic shell. I am nearly finished, but I am running into an issue with execvp and my character array of parameters. ...
0
votes
1answer
128 views
execvp - ls: fts_open: No such file or directory
I'm currently struggling with this error. I'm writing a shell emulator, using fork() for executing a command using execvp();.
Almost every command I try to parse to my shell is working perfectly, ...
2
votes
3answers
65 views
Passing an array to execvp() from the user's input
I'm trying to pass arguments entered by the user to execvp().
So far I've split up the string. If the user types ls -a, temp is saved as "ls" and "-a" followed by a NULL character. I'm not quite sure ...
1
vote
3answers
140 views
Splitting a char array by delimeter, then saving the result?
I need to be able to parse the following two strings in my program:
cat myfile || sort
more myfile || grep DeKalb
The string is being saved in char buffer[1024]. What I need to end up with is a ...
0
votes
1answer
92 views
Issue with using execvp()
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
extern int ...
1
vote
1answer
59 views
passing non-char* arguments to execvp
Basically, I want to exec a program called "worker" with 6 arguments that are ints...
char* args[7] = {(char*)"worker",workerID,i+1,msgID,shmID,semaphoreID,NULL};
if(execvp("worker",args)<0){
...
0
votes
3answers
77 views
Losing control after execvp(grep)
I'm trying a write a little program to run grep via execvp. This is basically identical to the problem I had here, but in this case, it only happens when I run grep (as opposed to echo, ls, emacs, etc ...
0
votes
1answer
50 views
execvp() not accepting user input
I have the following code:
int main(void) {
char in[100];
printf("> ");
fgets(in, sizeof(in), stdin);
int pid;
char *f[100];
char *v;
int i = 1;
v = strtok(in, " ...
0
votes
2answers
88 views
c++ unzip returns cannot create extraction directory
I have written a simple piece of code for extracting zip files using unzip. It works fine when output directory is not set but returns error is directory is set
"Archive: ...
0
votes
1answer
58 views
How can i pass all files with full path in a directory to the argument array in execv?
I'm trying to read all files (pictures) in a given directory and pass it to execv. I want to start the framebuffer image viewer (fbi).
For now it works when i start it from the directory the pictures ...
1
vote
3answers
137 views
What does execvp actually do? [duplicate]
Possible Duplicate:
Writing a shell - how to execute commands
I've been tasked with writing a shell in C. So far I understand that execvp will try to run the program in arg1 with arg2 as ...
2
votes
2answers
148 views
How to execvp ls *.txt in C
I'm having issues execvping the *.txt wildcard, and reading this thread - exec() any command in C - indicates that it's difficult because of "globbing" issues. Is there any easy way to get around ...
0
votes
1answer
64 views
Add directory to the PATH for execvp()
I am writing a small console-like program in C, along with implementations for ls, tac and dir.
I use execvp() function to override the forked children of the process, but when the user inserts one ...
0
votes
3answers
391 views
C - Executing Bash Commands with Execvp
I want to write a program Shellcode.c that accepts in input a text file, which contains bash commands separeted by newline, and executes every commands in the text file: for example, the text file ...
0
votes
2answers
925 views
Classic C. Using pipes in execvp function, stdin and stdout redirection
I want to simulate bash in my Linux C program using pipes and execvp function. e.g
ls -l | wc -l
There is my program:
if(pipe(des_p) == -1)
/* error checking */
...
2
votes
4answers
97 views
Problems with using execvp on a constructed string
I'm trying to write a shell, and part of its construction is executing code from a user-inputted string (buffer). However, when I attempt to execvp the string with additional inputs (ae. echo a), it ...
2
votes
1answer
464 views
fork/exec/waitpid issue
I'm trying to determine whether an execution failed by checking the result of waitpid(). However, even when I run a command that I know fails and writes the issue to stderr, the check below never ...
0
votes
3answers
230 views
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 or anything, so this is fairly straightforward. I am definitely executing the ...
0
votes
1answer
81 views
C++ invoke the java jar
I want use execvp to invoke java to execute a funcion, like the bellow code:
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
char* const argv[]= {
...
-1
votes
1answer
228 views
Trying to use execvp to execute external commands in C (in a shell like program)
so I had to implement support for executing external commands(for linux in the C programming language).
This is what I have so far, I used the readline library for the history functions but that is ...
0
votes
1answer
110 views
How to get error of execvp in the fork()?
I have the following code.
My question is in the code
int main() {
....
if ((uproc.pid = fork()) == -1) {
return -1;
}
if (uproc.pid == 0) {
...
1
vote
1answer
288 views
C++, linux, fork, execvp, waitpid and SIGTSP
I'm implementing a Terminal for a Home Work.
I almost finished, I just need to implement a bg ( Background ) and a fg ( Foreground ) commands.
my code looks like this:
void run(){
string ...
1
vote
1answer
76 views
Alternatives to execvp for copying a file, once copy completes, I want it to notify
I've c code that uses fork and execvp functions, The intent of the code is copy a src_file to target_path once the copying is done, Notify the user, of its status(print msg)
I know that the usage of ...
1
vote
2answers
296 views
execvp and type of parameters - ansi c
I am having trouble with using execvp(). execvp() expects type char * const* as second parameter. I want to parse arguments passed to application (in argv) and make an array of that type. For example, ...
0
votes
1answer
165 views
execvp not returning even though file doesn't exist
I'm writing a little shell for class. I call execvp for non-built-in commands. For a while in developing this, it returned normally with -1 and all was right. Now, however, I can type anything in to ...
3
votes
4answers
243 views
C Test For File Existence Before Calling execvp
I'm writing a UNIX minishell on ubuntu, and am trying to add built-in commands at this point. When it's not a built-in command I fork and then the child executes it, however for built-in commands I'll ...
1
vote
1answer
905 views
Parsing input with strtok in C
I have a project due in a class that requires me to build a simple shell in C. I'm new to C and the problem I am facing right now is that of parsing the commands correctly before sending them off to ...
0
votes
1answer
257 views
freopen and execvp in c
I am doing a minor shell implementation in c, and I am stuck.
I want to be able to redirect stdin and stdout, but I am confused. In, my shell, when I want to start a program, I use the execvp ...
0
votes
1answer
1k views
Make execvp permission denied
I've got a makefile I'm trying to run without too much luck. Here's what happens
I try to make, and it start out ok. It then gives an error that it can't find the file. However, I can do an ls -ld on ...
0
votes
1answer
122 views
Set ignored signals to SIG_DFL before execvp()
I'm writing a library where I fork() and execvp() to start another program. As I've understood, execvX() resets "custom" signal handlers to SIG_DFL but it doesn't set any ignored signals handlers to ...
0
votes
1answer
132 views
execvp and me; How can I make it work for me?
I have created a shell, and it works when I use system(1), but the specs say not to.
I am trying to use execvp at the end and I'm not really too sure on how to do it. Any chance of help would be ...
1
vote
1answer
90 views
Segfault from execvp
I'm trying to exec input that I get from a socket. I take the message buffer and put it into a char *[] and it is null terminated it works for ls but it won't work with paramaters like ls -la.
char ...
2
votes
2answers
100 views
Reading the right amount of data out of a pipe when your receiving output from execvp
This is just a small part of a bigger program but Im trying to get the output from execvp
I have execvp set up correctly with dup2 that directs it into a pipe.
My problem comes when it comes to using ...
0
votes
1answer
50 views
execvp does not get argument
My code is:
execvp(command, args);
args is char* args[]
command is char* command
for example for ls -l, command is ls and args is -l but why after executing
execvp(command, args)I get only ...
0
votes
0answers
98 views
EUID/EGID after execvp?
On a embedded Linux System (old 2.4.25 Kernel), I have an executable calling a bash script which then calls another executable:
Executable1:execvp() -> Script.sh -> Executable2
The ...
0
votes
2answers
154 views
C - execvp() second argument
execvp(argv[1], &argv[1])
What exactly is done with the second argument of execvp()?
0
votes
1answer
265 views
fork() and execvp()
I'm having problems trying to execute a process using fork() and execvp(). I have a struct Pcb which has an array of arguments (args):
#define MAXARGS 2
struct pcb {
pid_t pid; // ...
5
votes
2answers
308 views
Building a C shell. execvp returns 'No such file' error. creating argv array on-the-fly with malloc
I am building a shell and am having some trouble with the system call 'execvp'. I saw some other questions on this topic but they were vague, and did not appear to be completely addressed (whoever ...
0
votes
1answer
122 views
search for app inside PATH environment in c
I'm trying to execute apps in c by name, before the run
I want to find out if the name are legal. is there any
way to check in c, and find out if the app exist in the PATH environment?
thanks
12
votes
1answer
302 views
Why is argv parameter to execvp not const?
execvp is defined thus:
int execvp(const char *file, char *const argv[]);
Which precludes code such as this from being used:
const char* argv[] = {"/bin/my", "command", "here", NULL};
...
1
vote
1answer
518 views
How to use execvp() with grep?
I am trying to exec() a call to grep inside of my C program. I am looking for the number of occurrences of a string pattern in a given file, which can be achieved with:
$ grep -e my_string -F ...
0
votes
3answers
238 views
program stops after execvp( command.argv[0], command.argv)
I am writing a small shell program that takes a command and executes it. If the user enters a not valid command the if statement returns a -1. If the command is correct it executes the command, ...
0
votes
1answer
116 views
Troubles with a pipe and a fork
I'm making a program that search files and sends it's results to other commands, like a pipe. ls | sort
When I run the program nothing happens.The problem I think is that the child's waits for the ...
