This tag refers to the starting of another, subsidiary program. It is named after the family of POSIX system calls whose name starts with “exec” (notably “execve”) though similar concepts exist on other platforms as well, especially when combined with the starting up of another process.

learn more… | top users | synonyms

0
votes
0answers
265 views

Capture stdin, stdout, stderr of child process using pipes

I have to write program in C (Unix) which captures stdin, stdout and stderr of command passed in command line arguments. For example, ./capture echo Hi == stdout === Hi == end of stdout == ./capture ...
0
votes
2answers
48 views

Spawn another process and not wait for it

I have 2 java processes. I want to start one of the processes from the other process via ProcessBuilder. My problem is that I only want to start the other process. I don't want to wait for any results ...
0
votes
1answer
73 views

exec() command on mac osx returns 5

I am trying to execute a thumbnail converter script phantomjs. From my terminal it works fine but in my web page returns 5 code. Is that a problem with the permissions? I am using php 5.3 + MAMP ...
0
votes
2answers
45 views

execl with wget, child process, unix - why does it not work

So I am trying to execute wget in a separate child process which I am duplicating with fork as follows: int child; pid_t child = fork(); if ( child == 0 ) { // no errors bool done = false; // ...
0
votes
1answer
76 views

Pipestream and child processes

I need to write my pipestream. My program should get names of another programs and call them, first program should read from stdin second from output of the first an so on. Last program print the ...
1
vote
1answer
258 views

PHP / Apache - Refreshing screen while exec'd script is running

One page on my web site is a PHP script that uses exec() to launch a separate PHP script which generates a PDF document. The PDF may take 30 seconds to generate. When I hit the refresh button during ...
9
votes
5answers
332 views

Is it possible to restrict what commands php can pass through exec at an OS level?

I am currently hosting a Drupal 6 site on a CentOS machine. The Drupal (CMS) configuration contains a few dozen third-party modules that should not be forked as a general best coding practice. ...
0
votes
2answers
61 views

running exec command in php does not function

I am having a problem running this command inside of php's exec command: UPDATED WORKING CODE: $results = exec('curl --dump-header - -H "Content-Type: application/json" -X PUT --data @data.json ...
0
votes
0answers
39 views

calling python script from another fails at class definition

I have a script called insertPrintCode.py, which works on its own. I want to call this from another python script using def main(): execfile("insertPrintCode.py") def execfile(filename): ...
0
votes
0answers
32 views

rndc failing intermittently on exec() calls w/ exit code 127

I have a web service that needs to remotely trigger a BIND reload. I'm accomplishing this by using a local rndc binary, which gets called via PHP exec() function. The rndc binary is set up to remotely ...
1
vote
0answers
26 views

SCTP does not work in PHP File but in Console

I want to copy a file from one server to another. I do it with a an rsa authentification file. My code is: excec("scp -C -o StrictHostKeyChecking=no -P 22 -i /data/www/htdocs/project/tmp/keydata -r ...
0
votes
1answer
84 views

Execute external command, exit script and interact with external command

Is there any alternative to Perl's exec(); in Python? I need Python to call external command, kill itself, and I can then interact with external command. In Perl I can just call exec("command ...
1
vote
3answers
67 views

Runtime.exec not running but no exception

I want to use java to run a script in a certain location. The script running fine if I run it manually: /export/home/trace.sh param1 param2 param3 param4 This is my code to run the script from ...
0
votes
3answers
160 views

exec and shell_exec not working in php

I am having problems with exec and shell_exec i have looked at every post on here and cant seem to find the problem. the code i am using : chdir('/'); $handle = shell_exec("/usr/bin/php ...
0
votes
2answers
227 views

C program that executes bash commands inside xterm with execl

I have a command that execute well in the normal terminal on Linux: xterm -e bash -c "some commands" I want to execute the above command using c program execXX system calls. I try to use the ...
2
votes
0answers
53 views

Java run another class and control its I/O [duplicate]

I need to (compile and) run another class with main method in Java and read its output and later write into its input, but focus on reading first. Let's say i need to test wether the application ...
0
votes
2answers
68 views

Fork() and Execl() in C++, Execl() is failing

I am trying to run execl() in C++, but it fails and I'm not sure why. string fileName = "test.txt"; string computerName = "jssoile@palmetto.school.edu"; pid_t pid; int status; if ((pid ...
3
votes
2answers
69 views

Python exec and __name__

When I run: exec "print __name__" it prints __main__. But when I run: exec "print __name__" in {} it prints __builtin__. How to make the second example to also print __main__? What I try to ...
0
votes
0answers
68 views

Ping without exec or socket

I need to figure out a way to find out how to ping in php without using exec or sockets. Thanks in advance.
0
votes
1answer
67 views

pthread_create b/w fork and exec

I wish to create a thread in a child process before the respective child process changes it's image using exec system call. However, seemingly, the pthread_create call is being overlooked. ...
0
votes
0answers
58 views

Adapt php parallel execution function for Windows?

Here is a function to execute an array of commands in parallel and return an array of results, optionally filtered by a callback function and a limit to the number of processes, it runs great on my ...
0
votes
2answers
75 views

Run program within C _without_ using a shell

I'm trying to run an application in C, but the only way I could find that is reasonably easy to use works like this: system("command here"); It works, of course, but it's really slow (especially ...
1
vote
3answers
89 views

Splitting Unix command for use with exec [duplicate]

I have a program which takes command from input, and then executes it using execl (it has to be function from execvp family). Right now, assuming the input line is in , can I simply use ...
0
votes
0answers
21 views

exec function blocks other requests during the execution

I can't get http response when a exec or system function is excuting. A specific request launch the exec function sudo find / -name toto, this take a while During the execution, the client send any ...
0
votes
2answers
52 views

PHP exec svn export

I'm trying to run this exec exec('svn export -r '.$rev2.' '.$repourl.'/'.$dir.$parts[$j].' cache/diff/'.$dir.$parts[$j]); which is equals to: svn export -r 1192 ...
0
votes
2answers
39 views

How does bash/scp expand out “remote” glob patterns?

If I execute (in bash): scp remote.machine:/var/log/sy* . I get all the files which match /var/log/sy* on the remote machine. syslog 100% 91KB 10.1KB/s ...
0
votes
0answers
21 views

Exec function make a call to a large number of processes

So, here is my simple code: <?php for ($i = 0; $i < 2; $i++) { exec('php -q file.php ' . $i . ' > /dev/null &'); echo 'Pros launched... ' . $i . '<br />'; } ?> The ...
3
votes
1answer
116 views

exec ssh file using php on same VPS

I'm trying to launch a ssh file via php on same VPS, and I've had some problems with this. When I connect to VPS via Putty screen "nosaukums" doesn't show in screen list, but all is working with sh ...
5
votes
2answers
992 views

Running at from PHP gives no output

I've been wrestling with exec(), trying to capture the output from it when I add a task using the at Unix system command. My problem is that it is giving no output when run from my script, however ...
0
votes
2answers
591 views

How to open a file using exec command in php?

I am trying to open a file by using the exec command in cake php controller. I have written a simple function with echo exec('cd\users\Sathya\Desktop'); echo exec('key.txt'); The command ...
4
votes
3answers
10k views

Set maximum execution time for exec() specifically [duplicate]

Is it possible to set maximum execution time of exec($command) function? Sometimes execution of my $command lasts too long stopping after 1 minute and presenting this error: Fatal error: Maximum ...
0
votes
1answer
51 views

Subtleties of exec in TSQL

This stored procedure CREATE PROC GetPage(@blockNumber int, @blockSize int = 40, @query varchar(1000)) AS DECLARE @a int = @blockNumber * @blockSize; DECLARE @b int = @a + @blockSize - 1; ...
2
votes
4answers
13k views

php exec and shell_exec not working

I want to run an exe file on my server and return the output to the browser screen. The exe file takes a input file and then returns data on the screen. Why is this code not working? $output = ...
2
votes
2answers
2k views

PHP exec/shell_exec/system not working through browser

I am running an SCO Unix box with apache version 1.3.33 and PHP version 4.4. I can properly execute the exec command through the cli, but run into trouble with trying to execute the script via a ...
7
votes
2answers
869 views

Node.js spawn with colors?

I'm using Mocha for testing my apps. Currently, I'm using Makefiles, but I want to switch to Cakefiles. When I run my test through Cake, the colors from Mocha are not displayed on console. Here's an ...
2
votes
9answers
4k views

PHP @exec is failing silently

This is driving me crazy. I'm trying to execute a command line statement on a windows box for my PHP web app. It's running on windows XP, IIS5.1. The web app is running fine, but I cannot get ...
0
votes
2answers
6k views

execvp arguments

Helllo everybody, I have this example code: pid = fork(); if (pid == 0) { execvp(argv[2],&argv[2]); perror("Error"); }else { wait(NULL); } From man exec I understand that " The ...
8
votes
2answers
2k views

How get exec task output with msbuild

I'm try get simple output by exec task with msbuild: <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Target Name="Test"> <Exec Command="echo test ...
1
vote
2answers
71 views

nodeJS exec does not work for “cd ” shell cmd

var sys = require('sys'), exec = require('child_process').exec; exec("cd /home/ubuntu/distro", function(err, stdout, stderr) { console.log("cd: " + err + " : " + stdout); ...
0
votes
1answer
132 views

Exec's unless command prevents my catalog to compile

I am facing some strange issues with Puppet 2.6.7. I have an exec that is using a shell script as command. Also, I want to use the same script to do the 'unless' property of exec, just passing a flag ...
0
votes
0answers
385 views

Execute linux AT Command via PHP

When I run this code via ssh echo wget http://domain.com/send_me_email.php | at 12:54 it ran correctly and sent me an email at that time. Not if I run a PHP script like this exec("echo wget ...
0
votes
1answer
84 views

php shell_exec() freeradius command

i have this problem: i want execute a command freeradius from the instruction php exec(), but it doesn't work. the code is simple: <?php exec('radzap -x -N 192.168.0.1 localhost secret'); ...
0
votes
0answers
35 views

Detecting PDF Page Info

I want to detect each pdf page's info, such as cover pages, main pages, posterior pages and introduction pages by command prompt or a php class. For example: in some PDF files on viewers such as ...
-1
votes
2answers
2k views

What is the difference between running a script from the command line and from exec() with PHP?

I'm trying to run a Python script using exec() from within PHP. My command works fine when I run it directly using a cmd window, but it produces an error when I run it from exec() in PHP. My Python ...
-2
votes
2answers
88 views

Calling C++ vs writing php function? [closed]

I am trying to think which would be better. I could just do some benchmarks, but doing one or two examples might not be as useful as getting others insight. I am trying to do some math and I was ...
1
vote
1answer
57 views

How can I pass a Text string as a PHP Exec command

I am trying to pass a Text string as a variable using the PHP Exec command line, but the entire text is not being passed. The text is like this: $title_page = 'Channel | This is the channels title'; ...
8
votes
8answers
2k views

how to use a bash function defined in your .bashrc with find -exec

my .bashrc has the following function function myfile { file $1 } export -f myfile it works fine when i call it directly rajesh@rajesh-desktop:~$ myfile out.ogv out.ogv: Ogg data, Skeleton v3.0 ...
0
votes
3answers
214 views

Why cannot PHP execute a command from web browser?

This is really simple but I cannot get it to work at all. Spent many hours and I've always give up. I created php script called copy.php and it should call a python script called copy.py. I want to ...
0
votes
1answer
106 views

Exec not returning anything when trying to run git shortlog with nodejs

I'm trying to get the result of git shortlog on a repository with nodejs this way: var exec = require('child_process').exec; exec("cd /tmp/"+folder +" && git shortlog", {maxBuffer: 500*1024}, ...
0
votes
0answers
57 views

sesu to root inside expect and run a script on the remote Linux host

I am new in scripting, Can you please give me a small hint. on my Windows machine I run the : "plink .. which is ssh to remote server and execute commands inside of *.sh" I need to ...

1 2 3 4 5 38