0
votes
4answers
25 views
How to catch the ouput from a execl command
I'm using the execl function to run a Linux process from C. When I do, for example:
int cmd_quem() {
int result;
result = fork();
if(result < 0) {
exit(-1);
}
…
0
votes
1answer
37 views
Run child processes as different user from a long running process
I've got a long running, daemonized Python process that uses subprocess to spawn new child processes when certain events occur. The long running process is started by a user with s …
2
votes
2answers
64 views
Detach a subprocess started using python multiprocessing module
Hello,
I would like to create a process using the mutliprocessing module in python but ensure it continues running after the process that created the subprocess exits.
I can get …
0
votes
5answers
92 views
How to get process’s grandparent id
How can i get process id of the current process's parent?
In general given a process id how can I get its parent process id?
e.g. os.getpid() can be used to get the proccess id, an …
0
votes
1answer
67 views
Closest equivalent to subprocess.communicate in Haskell
I want to do a popen() / python's subprocess.communicate from Haskell - start a program, give it stdin, and get its stdout/stderr. What's the most direct / Haskellish way to do thi …
0
votes
2answers
54 views
Parsing output of apt-get install for progress bar
I'm working on a simple GUI Python script to do some simple tasks on a system. Some of that work involves apt-get install to install some packages.
While this is going on, I want …
1
vote
2answers
46 views
python popen working directory argument
hi all,
I there a way to specify the running directory of command in subprocess.Popen()
like
Popen('c:\mytool\tool.exe',workingdir='d:\test\local')
and my python script locat …
3
votes
4answers
110 views
Can you only communicate once with a subprocess?
communicate's documentation says:
Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate.
W …
1
vote
4answers
126 views
How to interpret status code in Python commands.getstatusoutput()
In a related question, I asked where to find the documentation for the C function "wait." This was an attempt to figure out return codes for the commands.getstatusoutput() module. …
1
vote
4answers
96 views
Python, subprocess, devenv, why no output?
I build a Visual Studio solution from a Python script. Everything works nicely, except that I am unable to capture the build output.
p = subprocess.Popen(['devenv', 'solution.sln' …
0
votes
1answer
62 views
Problem Using Python’s subprocess.communicate() on Windows
I have an application that I am trying to control via Python and the subprocess module. Essentially what I do is start the application using Popen (which opens a command prompt wi …
3
votes
2answers
90 views
How do I close the stdout-pipe when killing a process started with python subprocess Popen?
I wonder if it is possible to shut down the communication pipe when killing a subprocess started in a different thread. If I do not call communicate() then kill() will work as expe …
2
votes
4answers
154 views
blocks - send input to python subprocess pipeline
I'm testing subprocesses pipelines with python. I'm aware that I can do what the programs below do in python directly, but that's not the point. I just want to test the pipeline so …
1
vote
3answers
35 views
Run time of a subprocess.Popen instance
Is there an easy way to find out the current (real or cpu) run time of a subprocess.Popen instance?
2
votes
2answers
119 views
catching stdout in realtime from subprocess
I have read tons of posts but still can't seem to figure it out.
I want to subprocess.Popen() rsync.exe in windows, and print the stdout in python.
My code works, but it doesn't …
