Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
10k views

Launch a shell command with in a python script, wait for the termination and return to the script

I've a python script that has to launch a shell command for every file in a dir: import os files = os.listdir(".") for f in files: os.execlp("myscript", "myscript", f) This works fine for the ...
2
votes
1answer
58 views

execlp multiple “programs”

I want to run something like cat file.tar | base64 | myprogram -c "| base64 -d | tar -zvt " I use execlp to run the process. When i try to run something like cat it works, but if i try to run ...
2
votes
3answers
231 views

execl doesn't work in a while(1) loop, server side; C script

I have a problem with a little C script which should run as a server and launch a popup for every message arriving. The execl syntax is correct because if I try a little script with main() { ...
1
vote
2answers
208 views

C program that makes use of the system calls for creating processes

I want to make a C program that makes use of the system calls for creating processes. The program should receive from the command line an undetermined number of Linux commands to execute them in ...
0
votes
2answers
714 views

Python: os.execl() - what does it do exactly? Why am I getting this error?

I'm running into some trouble with deploying Django on the passenger_wsgi module with virtualenv. The Python code in the passenger_wsgi.py file, which should fix my problem is: import os, sys INTERP ...
0
votes
3answers
233 views

Running “source” from python

I have a file a.txt with lines of commands I want to run, say: echo 1 echo 2 echo 3 If I was on csh (unix), I would have done source a.txt and it would run. From python I want to run os.execl with ...
0
votes
2answers
377 views

telling when an execl() process exits

I've got a c++ application with certain items in a queue, those items then are going to be processed by a python script. I want it so that at maximum 10 instances of the python script are running. I ...