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

47
votes
5answers
31k views

exec and fork()

What are the differences between fork() and exec()?
41
votes
8answers
24k views

node.js execute system command synchronously

I need in node.js function result = execSync('node -v'); that will synchronously execute the given command line and return all stdout'ed by that command text. ps. Sync is wrong. I know. Just ...
52
votes
9answers
48k views

How do I execute a string containing Python code in Python?

How do I execute a string containing Python code in Python?
6
votes
2answers
9k views

run shell command from java

I am working on an application an have an issue about running shell command from java application. here is the code: public String execRuntime(String cmd) { Process proc = null; int ...
6
votes
5answers
6k views

PHP exec() as Background Process (Windows Wampserver Environment)

I'm trying to setup a php trigger file that will set off a background process. (see this question) I'm doing this on a Windows Wampserver environment. So for example I have trigger.php that runs the ...
2
votes
2answers
3k views

Running command-line application from PHP as specific user

I am running Apache on my localhost. From a PHP script run as www-user I would like to control Rhythmbox playback on my machine. So far I have a simple command in my PHP script: ...
5
votes
8answers
22k views

How to execute cmd commands via Java

I am trying to execute command line arguments via Java. For example: // Execute command String command = "cmd /c start cmd.exe"; Process child = Runtime.getRuntime().exec(command); ...
7
votes
3answers
6k views

php exec command (or similar) to not wait for result

I have a command I want to run, but I do not want PHP to sit and wait for the result. <?php echo "Starting Script"; exec('run_baby_run'); echo "Thanks, Script is running in background"; ?> Is ...
13
votes
3answers
5k views

bash: force exec'd process to have unbuffered stdout

I've got a script like: #!/bin/bash exec /usr/bin/some_binary > /tmp/my.log 2>&1 Problem is that some_binary sends all of its logging to stdout, and buffering makes it so that I only see ...
6
votes
1answer
6k views

Running Shell commands though java code on Android?

Took me a while but I came back to this project with greater understanding of how to code. Here's a working way to do this for future reference of whoever Define the string String[] commands = ...
10
votes
8answers
11k views

Executing a Java application in a separate process

Can a Java application be loaded in a separate process using its name, as opposed to its location, in a platform independent manner? I know you can execute a program via ... Process process = ...
35
votes
3answers
15k views

Ruby, Difference between exec, system and %x() or Backticks

Anybody knows, the difference of the following methods in ruby. exec, system and %x() or Backticks I know, they are helpful to execute the terminal command through programming way.. But, I want to ...
10
votes
6answers
17k views

Can I include dll in exe (in Visual Studio)? [duplicate]

Possible Duplicate: .NET windows application, can it be compressed into a single .exe? To run my App I need AxInterop.WMPLib.dll and Interop.WMPLib.dll that are located in Debug and Release ...
4
votes
6answers
13k views

Having trouble with fork(), pipe(), dup2() and exec() in C

Here's my code: #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <wait.h> #include <readline/readline.h> #define NUMPIPES 2 int main(int argc, char ...
2
votes
3answers
5k views

Run a ffmpeg process in the background

I am wanting to use ffmpeg to convert video to .flv in php. Currently I have this working, but it hangs the browser until the file is uploaded and is finished. I have been looking at the php docs on ...
3
votes
4answers
1k views

popen() alternative

My question is extension of this one: popen creates an extra sh process Motives: 1) My program need to create a child which does tail on a file. I need to process the output line by line. That is ...
11
votes
2answers
5k views

How to make pipes work with Runtime.exec()?

Consider the following code: String commandf = "ls /etc | grep release"; try { // Execute the command and wait for it to complete Process child = Runtime.getRuntime().exec(commandf); ...
4
votes
3answers
4k views

PHP exec $PATH variable missing elements

When I echo $PATH on my command line, it returns /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Applications/MAMP/Library/bin:/usr/local/git/bin:/usr/X11/bin When I execute this php ...
3
votes
1answer
1k views

php in background exec() function

I made this script to test the execution of PHP as a background process foreach($tests as $test) { exec("php test.php ".$test["id"]); } as suggested in php process background and How to add ...
48
votes
2answers
16k views

What's the difference between eval, exec, and compile in Python?

I've been looking at dynamic evaluation of Python code, and come across the eval() and compile() functions, and the exec statement. Can someone please explain the difference between eval and exec, ...
22
votes
9answers
23k views

How to add a timeout value when using Java's Runtime.exec()?

I have a method I am using to execute a command on the local host. I'd like to add a timeout parameter to the method so that if the command being called doesn't finish in a reasonable amount of time ...
14
votes
6answers
14k views

How do I launch a completely independent process from a Java program?

I am working on a program written in Java which, for some actions, launches external programs using user-configured command lines. Currently it uses Runtime.exec() and does not retain the Process ...
11
votes
2answers
7k views

how to set close-on-exec by default

I'm implementing a library to run commands. The library is C, on Linux. It currently does a popen() call to run a command and get output. The problem is that the command inherits all currently open ...
1
vote
2answers
4k views

nohup on windows, exec without waiting for finish

Is there something like this for Windows? exec("nohup /usr/bin/php -f sleep.php > /dev/null 2>&1 &");
6
votes
3answers
3k views

Append text to stderr redirects in bash

Right now I'm using exec to redirect stderr to an error log with exec 2>> ${errorLog} The only downside is that I have to start each run with a timestamp since exec just pushes the text ...
8
votes
4answers
2k views

Faster forking of large processes on Linux?

What's the fastest, best way on modern Linux of achieving the same effect as a fork-execve combo from a large process ? My problem is that the process forking is ~500MByte big, and a simple ...
10
votes
1answer
9k views

How is stack size of process on linux related to pthread, fork and exec

guys. I have a question about the stack size of a process on Linux. Is this stack size determined at linkage time and is coded in the ELF file? I wrote a program which print its stack size by ...
9
votes
6answers
40k views

Can't execute PHP script using PHP exec

I am trying to invoke a script which takes several seconds (web services with 3rd party) using the PHP exec call. After much struggling, I reduced this to the classic hello world example. The ...
9
votes
7answers
1k views

Python: How to pass arguments to the __code__ of a function?

The following works: def spam(): print "spam" exec(spam.__code__) spam But what if spam takes arguments? def spam(eggs): print "spam and", eggs exec(spam.__code__) TypeError: ...
12
votes
4answers
6k views

Running exec as a different user

Is it possible to run exec() as a a different user (on my box it runs as www-data). I wish to execute a script that needs access to files that are not owned by www-data.
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 ...
3
votes
1answer
594 views

Creating a PHP Online Grading System on Linux: exec Behavior, Process IDs, and grep

Background I am writing a simple online judge (a code grading system) using PHP and MySQL. It takes submitted codes in C++ and Java, compiles them, and tests them. This is Apache running PHP 5.2 on ...
2
votes
4answers
6k views

Allowing PHP to execute a bash script with root permissions

how to allow a PHP script to execute a bash script with root permissions? Let's say there is a PHP script... <?php // location: /var/www/script.php exec("bash /var/scripts/test.sh"); // "sudo ...
2
votes
4answers
11k views

Calling java from PHP exec

I am doing the following in PHP: exec('java -jar "/opt/flex3/lib/mxmlc.jar" +flexlib "/opt/flex3/frameworks" MyAS3App.as -default-size 360 280 -output MyAS3App.swf'); When I run this from the ...
9
votes
2answers
4k views

Maven and Exec: forking a process?

I'm trying to use Maven to start an application prior to running some integration tests on it. I'm on Windows. My Maven plugin configuration looks like this: <plugin> ...
9
votes
5answers
3k views

Check if “exec” is disabled [duplicate]

Is there any function in PHP that I can use to detect whether or not the exec function is available?
4
votes
3answers
863 views

exec() waiting for a response in PHP [duplicate]

Possible Duplicate: php exec command (or similar) to not wait for result I have a page that runs a series of exec() commands which forces my PHP script to halt alteration until it receives ...
3
votes
2answers
1k views

How do I use exec 3>myfifo in a script, and not have echo foo>&3 close the pipe?

Why can't I use exec 3>myfifo in the same manner in a bash script as I can in my terminal? I'm using named pipes to turn an awk filter into a simple "server", that should be able to take text input ...
1
vote
4answers
1k views

If I have a process, and I clone it, is the PID the same?

Just a quick question, if I clone a process, the PID of the cloned process is the same, yes ? fork() creates a child process where the PID differs, but everything else is the same. Vfork() creates a ...
7
votes
1answer
11k views

Is it possible to execute a string in MySQL?

I have to convert an MSSQL stored proc that passes a varchar that is a query. The proc has the following command: INSERT INTO Results EXEC (@Expresion); This isn't working. I'm pretty sure that ...
5
votes
3answers
17k views

Ant exec - cannot run program 'start' CreateProcess error=2

I can't run the windows 'start' using ant exec. Ant version 1.7.1. Here is sample build.xml to recreate the problem <project name="test" basedir="." default="test-target"> <target ...
4
votes
1answer
3k views

PHP - What's the difference between escapeshellarg and escapeshellcmd?

PHP has 2 closely related functions, escapeshellarg() and escapeshellcmd(). They both seem to do similar things, namely help make a string safer to use in system()/exec()/etc. Which one should I use? ...
3
votes
1answer
1k views

bash: find -exec and filenames

I want to strip the HTML out of few hundred files. Here's the command I've started with: find -name *.html -exec w3m {} > w3m {}.html.out \; The problem I've run into is that it created one ...
2
votes
3answers
9k views

Redirect Runtime.getRuntime().exec() output with System.setOut();

Lets say I have a program Test.java: import java.io.*; public class Test { public static void main(String[] args) throws Exception { System.setOut(new PrintStream(new ...
2
votes
1answer
5k views

Run bat file in Java and wait 2

This is a followup question to my other question : http://stackoverflow.com/questions/2434125/run-bat-file-in-java-and-wait The reason i am posting this as a separate question is that the one i ...
2
votes
6answers
8k views

illegal command error code 127 in php exec function

I am using this php code: exec("unrar e file.rar",$ret,$code); and getting an error code of illegal command ie 127 ... but when I am using this command through ssh its working ... because unrar is ...
1
vote
1answer
2k views

Problem with Runtime.exec and Android

I have an issue when I'm using Runtime.exec with my Android device and just can't figure out why it happens... Here is an example of the tests I did : public class MainActivity extends Activity { ...
0
votes
3answers
2k views

Why doesn't exec(“top”); work on Linux?

I was trying to execute this command echo exec("top"); and echo exec("/usr/bin/top"); neither works (returns blank output) does anybody know why?
0
votes
3answers
4k views

PHP webpage doesn't launch unix command even after updated sudoers

Basically I am trying to restart a service from a php web page. Here is the code: <?php exec ('/usr/bin/sudo /etc/init.d/portmap restart'); ?> But, in /var/log/httpd/error_log, I get ...
34
votes
2answers
20k views

The difference between fork(), vfork(), exec() and clone()

I was looking to find the difference between these four on Google and I expected there to be a huge amount of information on this, but there really wasn't any solid comparison between the four calls. ...

1 2 3 4 5