Tagged Questions

popen() is a way to communicate with subprocesses using a file-like interface. It originated in C, but has been ported to other languages (via extensions) such as Python.

learn more… | top users | synonyms

15
votes
8answers
3k views

How do I get 'real-time' information back from a subprocess.Popen in python (2.5)

I'd like to use the subprocess module in the following way: create a new process that potentially takes a long time to execute. capture stdout (or stderr, or potentially both, either together or ...
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 ...
11
votes
5answers
19k views

Python, Popen and select - waiting for a process to terminate or a timeout

I run a subprocess using: p = subprocess.Popen("subprocess", stdout=subprocess.PIPE, stderr=subprocess.PIPE, ...
9
votes
3answers
694 views

Ruby pipes: How do I tie the output of two subprocesses together?

Is there an automated way to do shell piping in Ruby? I'm trying to convert the following shell code to Ruby: a | b | c... > ... but the only solution I have found so far is to do the buffer ...
9
votes
2answers
4k views

Why does subprocess.Popen() with shell=True work differently on Linux vs Windows?

When using subprocess.Popen(args, shell=True) to run "gcc --version" (just as an example), on Windows we get this: >>> from subprocess import Popen >>> Popen(['gcc', '--version'], ...
8
votes
5answers
3k views

Python subprocess/Popen with a modified environment

I believe that running an external command with a slightly modified environment is a very common case. That's how I tend to do it: import subprocess, os my_env = os.environ my_env["PATH"] = ...
8
votes
5answers
2k views

Executing multiple commands using Popen.stdin

I'd like to execute multiple commands in a standalone application launched from a python script, using pipes. The only way I could reliably pass the commands to the stdin of the program was using ...
7
votes
2answers
222 views

Alternatives to Python Popen.communicate() memory limitations?

I have the following chunk of Python code (running v2.7) that results in MemoryError exceptions being thrown when I work with large (several GB) files: myProcess = Popen(myCmd, shell=True, ...
7
votes
2answers
1k views

How to clean up after subprocess.Popen?

I have a long-running python script with a perl worker subprocess. Data is sent in and out of the child proc through its stdin and stdout. Periodically, the child must be restarted. Unfortunately, ...
7
votes
4answers
1k views

How do I close a Python 2.5.2 Popen subprocess once I have the data I need?

I am running the following version of Python: $ /usr/bin/env python --version ...
7
votes
2answers
6k views

Intercepting stdout of a subprocess while it is running

If this is my subprocess: import time, sys for i in range(200): sys.stdout.write( 'reading %i\n'%i ) time.sleep(.02) And this is the script controlling and modifying the output of the ...
6
votes
1answer
144 views

chaining Popen subprocesses properly

i have a construct like the following: os.mkfifo('pipe.tmp') enc = Popen(['encoder', '-i', 'pipe.tmp']) cap = Popen(['capture', '-f', 'pipe.tmp']) here cap is a process which normally writes to a ...
6
votes
4answers
328 views

how to concatenate multiple files for stdin of Popen

I'm porting a bash script to python 2.6, and want to replace some code: cat $( ls -tr xyz_`date +%F`_*.log ) | filter args > bzip2 I guess I want something similar to the "Replacing shell pipe ...
6
votes
2answers
351 views

Why is standard output from subprocess (redirected to unbuffered file) being buffered?

From http://docs.python.org/library/functions.html#open The optional bufsize argument specifies the file’s desired buffer size: 0 means unbuffered, 1 means line buffered, any other positive ...
6
votes
3answers
2k views

Send Ctrl-C to remote processes started via subprocess.Popen and ssh

How do I send a Ctrl-C to multiple ssh -t processes in Popen() objects? I have some Python code that kicks off a script on a remote host: # kickoff.py # i call 'ssh' w/ the '-t' flag so that when i ...
6
votes
3answers
873 views

Linux time sample based profiler

short version: Is there a good time based sampling profiler for Linux? long version: I generally use OProfile to optimize my applications. I recently found a shortcoming that has me wondering. ...
6
votes
3answers
906 views

What's the difference between all of the os.popen() methods?

I was looking at the Python documentation and saw that there are 4-5 different versions of popen(), e.g. os.popen(), os.popen2(), etc. Apart from the fact that some include stderr while others ...
5
votes
4answers
151 views

Most standard way to select a function name depending on platform?

I am currently using the popen function in code that is compiled by two compilers: MS Visual Studio and gcc (on linux). I might want to add gcc (on MinGW) later. The function is called popen for gcc, ...
5
votes
1answer
419 views

When Popen.communicate() is not enough?

I found a lot of threads more or less related to this topic and still almost nothing like full answer... I'm looking for your advice on it. So, here is my problem: I really need to communicate with a ...
5
votes
4answers
998 views

Python's Popen cleanup

I wanted to use a python equivalent to piping some shell commands in perl. Something like the python version of open(PIPE, "command |"). I go to the subprocess module and try this: p = ...
5
votes
1answer
372 views

Why does this code behave differently in Python3.1 than in Python2.6?

I'm very new to programming so I apologize in advance if my question is too silly. #!/usr/bin/python2.6 import subprocess, time p=subprocess.Popen(['cat'], stdin=subprocess.PIPE, ...
4
votes
4answers
87 views

Python subprocess to Bash: curly braces

I have the following Python lines: import subprocess subprocess.Popen("egrep -r --exclude=*{.git,.svn}* \"text\" ~/directory", stdout=subprocess.PIPE, shell=True).communicate()[0] Unfortunately, ...
4
votes
2answers
116 views

Is there an example of forking and communicating with a subprocess in D?

How do you fork and communicate with a subprocess in D? I think I'm pretty much looking for http://erdani.com/d/new-stdio/phobos-prerelease/std_process.html#pipeProcess but pipeProcess doesn't seem ...
4
votes
1answer
887 views

WindowsError: [Error 5] Access is denied when trying to kill a subprocess (python)

So I have a python script that runs a loop in which it calls a program A through subprocess.Popen waits for its output, then saves the output and then calls it again and so on. (This keeps happening ...
4
votes
1answer
669 views

Run Windows CMD commands via Python

I want to create a folder with symlinks to all files in a large directory structure. I used subprocess.call(["cmd", "/C", "mklink", linkname, filename]) first, and it worked, but opened a new command ...
4
votes
1answer
232 views

Cron Terminates Python Script?

I have a 'long' python script that takes roughly 45[min] to run. I use another (a 'scheduler' script) python script to run this long script. When I run the 'scheduler' script using the terminal, ...
4
votes
3answers
202 views

How Do I Pipe a String Into a popen() Command in C?

Im working in c (more or less for the first time) for uni, and I need to generate an MD5 from a character array. The assignment specifies that this must be done by creating a pipe and executing the ...
4
votes
2answers
218 views

Why does popen() only work once?

When I run the program below on my Mac (OS/X 10.6.4), I get the following output: $ ./a.out Read 66 lines of output from /bin/ps Read 0 lines of output from /bin/ps Read 0 lines of output from ...
4
votes
2answers
538 views

LD_PRELOAD affects new child even after unsetenv(“LD_PRELOAD”)

my code is as follows: preload.c, with the following content: #include <stdio.h> #include <stdlib.h> int __attribute__((constructor)) main_init(void) { printf("Unsetting ...
4
votes
1answer
281 views

Rescuing “command not found” for IO::popen

When I use IO::popen with a non-existent command, I get an error message printed to the screen: irb> IO.popen "fakefake" #=> #<IO:0x187dec> irb> (irb):1: command not found: ...
4
votes
1answer
875 views

What is the subprocess.Popen max length of the args parameter?

I am using Popen function from the subprocess module to execute a command line tool: subprocess.Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, ...
4
votes
2answers
668 views

Why does supplying stdin to subprocess.Popen cause what is written to stdout to change?

I'm using Python's subprocess.Popen to perform some FTP using the binary client of the host operating system. I can't use ftplib or any other library for various reasons. The behavior of the binary ...
4
votes
4answers
3k views

Non-blocking pipe using popen?

I'd like to open a pipe using popen() and have non-blocking 'read' access to it. How can I achieve this? (The examples I found were all blocking/synchronous)
4
votes
2answers
2k views

Disable console output from subprocess.Popen in Python

I run Python 2.5 on Windows, and somewhere in the code I have subprocess.Popen("taskkill /PID " + str(p.pid)) to kill IE window by pid. The problem is that without setting up piping in Popen I ...
3
votes
2answers
203 views

Python - subprocesses and the python shell

I am trying to shell out to a non-python subprocess and allow it to inherit the stdin and stdout from python. - i am using subprocess.Popen This would probably work if I am calling from a console, ...
3
votes
2answers
55 views

process.communicate and getche() fails

I am attempting to automate the execution of an interactive command line tool written in C++. When launched, the binary waits for the letter S, Q, or P (Status, Quit, or Pause). It uses a ...
3
votes
0answers
86 views

how to raise event getche() from process.Popen() - does not monitor stdin

I am launching a binary in windows using: process = subprocess.Popen(cmd, stderr = subprocess.PIPE, stdin = subprocess.PIPE, stdout = ch.input) ch.input comes from: ch = InputStreamChunker('\n') ...
3
votes
1answer
53 views

Strange interaction between popen() and printf vs. cout in C++

It's probably a long-shot that anyone can answer this without seeing all the source code and libraries, etc., but I'll try. I have a program X written in C++ using boost-1.41. If X outputs with ...
3
votes
3answers
108 views

link several Popen commands with pipes

I know how to run a command using cmd = subprocess.Popen and then subprocess.communicate. Most of the time I use a string tokenized with shlex.split as 'argv' argument for Popen. Example with "ls -l": ...
3
votes
2answers
46 views

How to pass the content of a variable trough an external command in php?

I have a variable that contains a long string. (specifically it contains a few kilobytes of javascript-code) I want to pass this string trough an external command, in this case a ...
3
votes
1answer
86 views

Why is IO::WaitReadable being raised differently for STDOUT than STDERR? (Ruby 1.9.2p290)

Given that I wish to test nonblocking reads from a long command, I have created the following script, saved it as long, made it executable with chmod 755, and placed it in my path (saved as ~/bin/long ...
3
votes
3answers
507 views

Python: How to read stdout non blocking from an other process?

During the runtime of a process I would like to read its stdout and write it to a file. Any attempt of mine however failed because no matter what I tried as soon as I tried reading from the stdout it ...
3
votes
2answers
101 views

Is there a method for reading characters from an instance of subprocess.Popen when the process it called has not yet issued a newline?

I am attempting to wrap a program that is routinely used at work. When called with an insufficient number of arguments, or with a misspelled argument, the program issues a prompt to the user, asking ...
3
votes
5answers
269 views

Starting programs from C++, exchanging info with pipes and then shared memory

I am currently developing a modular framework using shared memory in C & C++. The goal is to have independent programs in both C and C++, talk to each other through shared memory. E.g. one ...
3
votes
2answers
339 views

Executing tasklist on Windows with popen in C without cmd.exe popup

Hello everybody and thanks for your time. I'm developing some kind of monitoring application in C and I fell in need of getting the current tasks list. So I'm using tasklist and getting the output ...
3
votes
4answers
491 views

Very large input and piping using subprocess.Popen

I have pretty simple problem. I have a large file that goes through three steps, a decoding step using an external program, some processing in python, and then recoding using another external ...
3
votes
3answers
1k views

Can popen() make bidirectional pipes like pipe() + fork()?

I'm implementing piping on a simulated file system in C++ (with mostly C). It needs to run commands in the host shell but perform the piping itself on the simulated file system. I could achieve ...
3
votes
2answers
168 views

How do I eliminate Windows consoles from spawned processes in Python (2.7)?

I'm using python 2.7 on Windows to automate batch RAW conversions using dcraw and PIL. The problem is that I open a windows console whenever I run dcraw (which happens every couple of seconds). If I ...
3
votes
3answers
1k views

popen equivalent in c++

Is their any C popen() equivalent in C++ to ?
3
votes
4answers
779 views

how to call a program from python without waiting for it to return

is there a way to call a program from python without waiting for it to return? i created a script which copies a program to a directory and runs that program. but when i call the program from python, ...

1 2 3 4 5 7