Tagged Questions

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

23
votes
7answers
21k views

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

How do I execute a string containing Python code in Python?
17
votes
5answers
7k views

exec and fork()

What are the differences between fork() and exec()?
16
votes
1answer
5k 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, ...
14
votes
4answers
6k views

Python: Spawn parallel child processes on a multi-processor system - use multiprocessor package, subprocess package, XYZ package?

I am a Python newbie so please be gentle :) I have a Python script that I want to use as a controller to another Python script. I have a server with 64 processors, so want to spawn up to 64 child ...
13
votes
4answers
4k 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 ...
13
votes
9answers
12k 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 ...
11
votes
2answers
330 views

What happens to malloc'ed memory after exec() changes the program image?

I know that when I call one of the exec() system calls in Linux that it will replace the currently running process with a new image. So when I fork a new process and run exec(), the child will be ...
11
votes
5answers
815 views

exec always returns -1 (or 127)

I'm using php 5.2.9 on a production server, and it seems that the exec() function behaves "non-standard". If i run exec("ls", $output, $return_var) then $output will contain the list of files in the ...
10
votes
1answer
283 views

Why are closures broken within exec?

In Python 2.6, >>> exec "print (lambda: a)()" in dict(a=2), {} 2 >>> exec "print (lambda: a)()" in globals(), {'a': 2} Traceback (most recent call last): File "<stdin>", ...
9
votes
1answer
127 views

PHP Exec SCP does not copy the file to the remote server

I need a file from a server to another server (I own both) using PHP. I have the following script: <?php exec('scp /home/pat/file1.tst pat@myserver.com:/home/pat/file1.txt'); I get this error: ...
9
votes
6answers
9k views

Can I include dll in exe (in Visual Studio)?

To run my App I need AxInterop.WMPLib.dll and Interop.WMPLib.dll that are located in Debug and Release folder. Is there any way to include those dlls into exe so my app is available in one file only?
8
votes
1answer
123 views

Not receiving SIGCHLD for processes executed with sudo

I'm currently in the process of writing a shell. I execute processes and utilize a SIGCHLD signal handler to clean up (wait on them) when they are complete. Everything has been working -- except ...
8
votes
1answer
250 views

Change [exec] label in output for Ant <exec> task

I am using Ant's <parallel> task to perform multiple simultaneous targets that use <exec> tasks, but it's difficult to read the output because it is interleaved. Is there any way to change ...
8
votes
5answers
6k 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 ...
8
votes
7answers
5k views

Using Quotes within getRuntime().exec

I'd like to invoke bash using a string as input. Something like: sh -l -c "./foo" I'd like to do this from Java. Unfortunately, when I try to invoke the command using getRuntime().exec, I get the ...
7
votes
5answers
202 views

how can exec change the behavior of exec'ed program

I am trying to track down a very odd crash. What is so odd about it is a workaround that someone discovered and which I cannot explain. The workaround is this small program which I'll refer to as ...
7
votes
5answers
3k views

Difference between “system” and “exec” in Linux?

What is the difference between system and exec family commands? Especially i want to know which one of them creates child process to work?
7
votes
1answer
3k 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 ...
7
votes
4answers
8k views

Dynamic/runtime method creation (code generation) in Python

I need to generate code for a method at runtime. It's important to be able to run arbitrary code and have a docstring. I came up with a solution combining exec and setattr, here's a dummy example: ...
6
votes
5answers
145 views

Is it possible to fork/exec and guarantee one starts before the other?

Pretty much as the title says. I have a snippet of code that looks like this: pid_t = p; p = fork(); if (p == 0) { childfn(); } else if (p > 0) { parentfn(); } else { // error } I ...
6
votes
2answers
169 views

Python: exec statement and unexpected garbage collector behavior

I found a problem with exec (it happened is a system that has to be extensible with user written scripts). I could reduce the problem itself to this code: def fn(): context = {} exec ''' ...
6
votes
2answers
634 views

Java - Problem with multiple, concurrent runtime.exec() InputStreams

I have no choice but to retrieve some external data by means of several Runtime.exec() calls to a VBScript. I truly hate this implementation, as I lose my cross-platform flexibility, but I may ...
6
votes
4answers
315 views

Calling code in a string without exec/eval, python

I have this code that executes when a player attempts to eat something: def eat(target='object'): global current_room global locations global inventory if target in inventory: ...
6
votes
3answers
2k 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
3k 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 ...
6
votes
3answers
740 views

Cannot change global variables in a function through an exec() statement?

Why can I not change global variables from inside a function, using exec()? It works fine when the assignment statement is outside of exec(). Here is an example of my problem: >>> myvar = 'test' >>> ...
6
votes
9answers
5k views

Java: 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 = ...
6
votes
8answers
16k views

PHP exec() will not execute shell command when executed via browser

I have a certain PHP script that calls exec() to execute a command to convert a PDF to JPG. This command works fine in bash. To preempt your initial troubleshooting guesses, note the following: ...
5
votes
2answers
127 views

Signal handler accessing queue data structure (race condition?)

I'm currently writing a small shell in C++. Jobs and the PIDs associated with them are stored within a queue of job pointers (job *). When a new job is run, information about it is added to the ...
5
votes
2answers
118 views

PHP exec enabled?

exec() appears to be enabled on the server (function_exists('exec') returns true, and command is not listed in 'disable_functions' variable) yet we get Warning: exec() has been disabled for security ...
5
votes
1answer
267 views

Why did Python 3 changes to exec break this code?

I looked through the myriad 'Python exec' threads on SO, but couldn't find one that answered my issue. Terribly sorry if this has been asked before. Here's my problem: # Python 2.6: prints 'it is ...
5
votes
2answers
357 views

Executing a shell command from Common Lisp

How can i execute a shell (bash) command within a Common Lisp program and assign the output to a variable?
5
votes
4answers
617 views

Java Runtime exec() fails to escape characters properly

This might already been answered before but that was regarding unicode and I don't think this is unicode (it's in ASCII so...). When I execute this in my terminal there is no problem what so ever ...
5
votes
3answers
386 views

os.execute without inheriting parent's fds

I have a problem analogous to the one described here: Prevent fork() from copying sockets Basically, inside my Lua script I'm spawning another script which: doesn't require communicating with my ...
5
votes
2answers
169 views

If Python's exec and eval were compiled?

Can the equivalent of eval and exec exist in a compiled language? If so, how would they be compiled (roughly speaking)?
5
votes
4answers
683 views

In Python, why doesn't exec work in a function with a subfunction?

It looks like you can't use exec in a function that has a subfunction... Anyone know why this Python code doesn't work? I get an error at the exec in test2. Also, I know exec's aren't good style, ...
5
votes
3answers
51 views

executing a test in sql server 2005

When I am executing following ... EXEC 'DROP TABLE bkp_anish_test' ('DROP TABLE bkp_anish_test' is a dynamically build sql query) I am getting following error Could not find stored procedure ...
5
votes
1answer
201 views

execute several python scripts at same time causes php/apache to hang?

I'm trying to execute a few python scripts in order to manipulate som images on my website. The external program/tool is written in python and is called PHATCH. I'm under Windows and using WAMP as my ...
5
votes
7answers
337 views

Use of exec and eval in Python

So I have understood what exec and eval and also compile do. But why would I need to use them? I am being unclear on the usage scenario. Can anyone give me some examples so that I can better ...
5
votes
2answers
458 views

How to run Java program and get output in PHP?

I'd like to run something like (in myProgram.sh): java -cp whatever.jar com.my.program $1 within PHP and read the output. So far I have something like: $processOrderCommand = 'bash -c "exec nohup ...
5
votes
2answers
160 views

How to execute a program from file descriptor?

I need to execute a file when I only know the descriptor. It is also possible that there are no links to the file so finding out the name somehow is not an option. All the execve(), execvp(), etc ...
5
votes
4answers
684 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 ...
5
votes
3answers
190 views

When to use system() and when to use execv*()?

I need to execute a unix command with different args in a loop. Now I wonder if I should use execvp(), passing in the cmd and the args, or use system, building a string consisting of cmd + args?
5
votes
7answers
4k views

Why does ant.bat not return an error status when run programmatically?

When I run ant from the command-line, if I get a failure, I get a non-zero exit status ($? on UNIX, %ERRORLEVEL% on Windows). But we have a Java program which is running ant (through ProcessBuilder), ...
5
votes
3answers
4k views

sh command: exec 2>&1

What will this command do? exec 2>&1
5
votes
2answers
3k views

ANT Script handling Return value from exec

So this is the scenario. I have <target name="test"> <property file="blah"></property> <exec dir="" executable="trast.exe" resolveexecutable="true" spawn="true"> ...
5
votes
7answers
6k views

bash to beep if command takes more than 1 minute to finish

I'm looking for my bash to beep, if the command i execute take more than a certain wall time ( say 1 minute ). if it keeps on beeping every few minutes there after till i hit enter or something ...
4
votes
2answers
58 views

How to add a variable amount of arguments to exec in tcl?

I've been working with TCL for some time now, and I have spent a long time trying to do the following (it seems easy and I think it should be, but I can't get it right): I need to execute an external ...
4
votes
1answer
62 views

How to use a variable to indicate a file descriptor in bash?

I want to use a bash variable to indicate a file descriptor, like this: id=6 file=a exec $id<>$file But the usage is wrong: -bash: exec: 6: not found So, how to use a variable to indicate ...
4
votes
2answers
138 views

Why does Unix have fork() but not CreateProcess()?

I do not get why Unix has fork() for creating a new process. In Win32 API we have CreateProcess() which creates a new process and loads an executable into its address space, then starts executing ...

1 2 3 4 5 20