Tagged Questions
0
votes
2answers
31 views
can't get stderr value from a subprocess
I have code
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = proc.communicate()
I tried invalid commands assigning to cmd, but stderr always is Null
An ...
1
vote
1answer
28 views
Non-blocking read on subprocess PIPE in python, one byte at a time
I have implemented a variant on the code in this question:
Non-blocking read on a subprocess.PIPE in python
To try and read the output in real time from this dummy program test.py:
import time,sys
...
1
vote
2answers
39 views
Ruby equivalent of Python's subprocess.check_call/check_output
Python provides two convenient functions for calling subprocesses that might fail, subprocess.check_call and subprocess.check_output. Basically,
subprocess.check_call(['command', 'arg1', ...])
...
1
vote
0answers
116 views
Calling subprocess.Popen with stdin, stdout, and stderr set to subprocess.PIPE changes the behavior of the terminal
I recently developed a Python script to leverage a tool to retrieve metrics from JVMs via JMX. The parent process (p1) uses the following code to start another process (p2).
p2 = subprocess.Popen(
...
1
vote
0answers
118 views
Python subprocess stdout to process stdin
Edit: My main question is, is there some way for a subprocess's stdout to be non-exclusively piped into the process's stdin. Non-exclusively so that the keyboard still works. Both need to go into a ...
0
votes
1answer
54 views
Broken pipe during a subprocess stdin.write
I interact with a server that I use to tag sentences. This server is launched locally on port 2020.
For example, if I send Je mange des pâtes . on port 2020 through the client used below, the server ...
0
votes
2answers
285 views
Python: Send command to mplayer under slave mode
I'm trying to send command via pipe to mplayer when running it under slave mode like this:
import subprocess, time
# start mplayer
song = 'mysong.mp3'
cmd = ['mplayer', '-slave', '-quiet', song]
p = ...
1
vote
4answers
101 views
Sub-processing pipe write to file malfunction
Executing this in shell gets me tangible results:
wget -O c1 --no-cache "http://some.website" | sed "1,259d" c1 | sed "4,2002d"
Doing this in Python gets me nothing:
...
0
votes
1answer
88 views
remove lines that match column condition in Unix/bash
What's the best way in bash to do a quick one liner to filter out all lines from a tab separated file if the Nth field has the string s in it? example:
$ cat myfile
A B_crop C
A X_mock D
$ cat ...
1
vote
1answer
192 views
chaining line by line writing/reading of pipes in Python with subprocess
I have the following code which appears to work, for chaining pipes together in python with subprocess while reading / writing to them line by line (without using communicate() upfront). The code just ...
0
votes
1answer
77 views
Issue terminal commands that are piped to a shell script
I have what seems to be a simple use case: I launch a script (python or bash) which runs an emulator from command prompt and then the emulator takes commands until I type ctrl-c or exit. I want to do ...
0
votes
0answers
57 views
Python: Subprocesses - No communication
I have a program that is getting compiled into two exes, one that is a launcher, one that is the program. The program can update itself and will then command the launcher to restart after it closes ...
1
vote
2answers
36 views
Are pipes in each process independent?
If I generate multiple subprocess.Popen(['commands', 'that', 'I', 'called']) and for each I do stdin.write(..) or p.communicate(...)to interact with the commands, is it guarantee to be independent and ...
0
votes
0answers
201 views
Calling python script with subprocess.Popen and flushing the data
Ok so i've seen dozen of threads like that , but none of them gives a complete answer and everything i tried so far foes not work for me.
1) Script that constantly outputs some data and flusheshs it:
...
1
vote
1answer
226 views
correct way to write to pipe line by line in Python
How can I write to stdout from Python and feed it simultaneously (via a Unix pipe) to another program? For example if you have
# write file line by line
with open("myfile") as f:
for line in f:
...
0
votes
3answers
108 views
Send args to subprocess while using stdin
I'm trying to take a screenshot then run a command on that screenshot without saving to disk.
The actual command I want to run is visgrep image.png pattern.pat
visgrep must have two args: the image ...
3
votes
2answers
95 views
Python 3 detailed control of I/O of another process
In python 3 (on Linux or MacOSX10.8) how can I get a parent process to read just a prompt (that does not include \n) issued by a subprocess, not the entire buffer till \n?
# program names.py
print("I ...
5
votes
1answer
204 views
When should I use `wait` instead of `communicate` in subprocess?
In the document of wait (http://docs.python.org/2/library/subprocess.html#subprocess.Popen.wait), it says:
Warning
This will deadlock when using stdout=PIPE and/or stderr=PIPE and the
child ...
3
votes
1answer
86 views
close multiple output pipes in perl without blocking on each one
I have a perl script which sends a lot of output to multiple subprocesses. I need to be able to close my end of all the pipes and then wait for the subprocesses to finish their work. So far I've ...
3
votes
2answers
213 views
How to reuse intermediate results of Popen in Python?
The codes are like this:
from subprocess import Popen, PIPE
p1 = Popen("command1", stdout = PIPE)
p2 = Popen("command2", stdin = p1.stdout, stdout = PIPE)
result_a = p2.communicate()[0]
p1_again = ...
2
votes
2answers
132 views
Using python Popen to read the last line
I have a simple python program:
test.py:
import time
for i in range(100000):
print i
time.sleep(0.5)
I want to use another program that executes the above one in order to read the last ...
1
vote
2answers
168 views
Subprocess - using several command line tools
I'm a learning newbie to python and to working in the command line, e.g. piping.
I've read that subprocess is encouraged way instead of os.system. I'm creating a script which invokes the shell and I ...
1
vote
2answers
128 views
Catching and outputting stderr at the same time with python's subprocess
(Using python 3.2 currently)
I need to be able to:
Run a command using subprocess
Both stdout/stderr of that command need be printed to the terminal in real-time (it doesn't matter if they both ...
0
votes
0answers
85 views
Using PIPE in python
I am trying to convert some code I have into python. The current code is in a gnu Makefile. I am having some trouble with this line.
cat $$dir/cpr/work/$(DATE)/output/XmlOutTxt*/part-r-000* | ...
1
vote
2answers
345 views
How to wrap a windows interactive console program for automation
I have an interactive console program in windows. I need to press keystroke like 'e' 'c' to the cmd window. It's convenient for human operating , but very difficult for program automation.
And now, ...
1
vote
1answer
164 views
In Python how to pipe a string into an executables stdin?
On Windows I have a program (prog.exe) that reads from stdin. In python I want to pipe a string as the input to its stdin. How to do that?
Something like:
subprocess.check_output("echo {0} | ...
0
votes
1answer
126 views
Pipe-lining two python programs
I know the similar questions were posted here but I couldn't get my code working.
I want to pipe one python program output to other's input. The one that is waiting for input has raw_input('>')
The ...
1
vote
1answer
144 views
Processing lots of data through a pipe with python / popen
I'm trying to watch a process and wait for a certain pattern, say:
open someFile id=123
then, after that, I want to wait for
close id=123
I tried to write the script as follows:
running_procs = ...
0
votes
2answers
71 views
Popen a command that contains need to say yes for all outputs
I need to automate the following command
cmd="yes | vgremove <vgname>"
whenever I code this command with
Popen(cmd.split(),stdout=PIPE,stderr=PIPE)
it does not complete. I suspect it waits ...
0
votes
2answers
209 views
Executing python subprocess via git hook
I'm running Gitolite over the Git repository and I have post-receive hook there written in Python. I need to execute "git" command at git repository directory. There are few lines of code:
proc = ...
1
vote
2answers
153 views
Why does my post-receive hook hang while reading from a subprocess pipe?
I'm running Gitolite over the Git repository and I have post-receive hook there. The script of this hook written in Python and fails after
proc = subprocess.Popen('git log', shell = True, ...
4
votes
1answer
811 views
Why does shell=True eat my subprocess.Popen stdout?
It seems that using shell=True in the first process of a chain somehow drops the stdout from downstream tasks:
p1 = Popen(['echo','hello'], stdout=PIPE)
p2 = Popen('cat', stdin=p1.stdout, ...
0
votes
1answer
238 views
Safe version of popen()?
I use fork()/exec()/wait() rather than system() when the command has user input as some of its arguments so the user can't put something like...
&rm -rf /home/* && echo HAHA
... as an ...
2
votes
4answers
297 views
piping in shell via Python subprocess module
So I'm trying to query for the top 3 CPU "intensive" processes on a given machine, and I found this shell command to do it: ps -eo pcpu,pid,user,args | sort -k 1 -r | head -3
I want to use this data ...
1
vote
1answer
401 views
Why is piping output of subprocess so unreliable with Python?
(Windows)
I wrote some Python code that calls the program SoX (subprocess module), which outputs the progress on STDERR, if you specify it to do so. I want to get the percentage status from the ...
5
votes
1answer
186 views
Difference between iterating over a file-like and calling readline
I always thought iterating over a file-like in Python would be equivalent to calling its readline method in a loop, but today I found a situation where that is not true. Specifically, I have a Popen'd ...
0
votes
2answers
142 views
passthru() + Pipe in subprocess = Traceback (most recent call last): (…) in stdout=subprocess.PIPE)
I've got an error when I'm using passthru() to call a python script (using subprocess and pipe) with PHP.
Here is the error:
Traceback (most recent call last): File "…/Desktop/h.py", line 11, in ...
2
votes
3answers
1k views
Python subprocess: how to use pipes thrice?
I'd like to use subprocess on the following line:
convert ../loxie-orig.png bmp:- | mkbitmap -f 2 -s 2 -t 0.48 | potrace -t 5 --progress -s -o ../DSC00232.svg
I found thank to other posts the ...
1
vote
1answer
215 views
Difference Between stdout=subprocess.PIPE and stdout=PIPE
So The title pretty much explains my question. What is the difference between stdout=subprocess.PIPE and stdout=PIPE? Both come from the subprocess module, but why would you use one over the other? ...
-2
votes
1answer
270 views
Communicate with Java program from Python
My Python progam is "check.py"
import os.path,subprocess
from subprocess import STDOUT,PIPE
def compile_java(java_file):
subprocess.check_call(['javac', java_file])
def execute_java(java_file):
...
6
votes
1answer
462 views
Shell piping with subprocess in Python
I read every thread I found on StackOverflow on invoking shell commands from Python using subprocess, but I couldn't find an answer that applies to my situation below:
I would like to do the ...
3
votes
2answers
834 views
Python - how to execute shell commands with pipe?
I have a case to want to execute the following shell command in Python and get the output,
echo This_is_a_testing | grep -c test
I could use this python code to execute the above shell command in ...
1
vote
2answers
106 views
Linking two subprocess output to another subprocesses input
so I have a problem here. I have a subprocess that reads one file and redirects the output to a subprocess pipe. I have another subprocess that does the exact same thing. What I want to do is run a ...
0
votes
1answer
122 views
running piped cmd in python - different results
I am trying to invoke the piped command (echo -e "HEAD / HTTP/1.0\n" | ncat -C localhost 80) in python.
from subprocess import call
cmd = 'echo -e "HEAD / HTTP/1.0\n" | ncat -C localhost 80'
...
2
votes
1answer
675 views
How to provide input to a python subprocess call that expects filename, rather than variable?
I'm trying to call a shell script (segment.sh) within python.
The syntax that produce correct results at the console is:
> ./segment.sh ctb file.txt utf-8 0
As can be seen, this shell script ...
2
votes
1answer
652 views
How to use readline() with a pipe returned by subprocess.Popen
I'm calling a child process using subprocess.Popen (Python 2.x on a POSIX system). I want to be able to read the output of the child process using Python's readline() file object function. However, ...
1
vote
1answer
297 views
Decompress stdout from a subprocess Popen call using gzip
is it possible to directly decompress, using gzip, the stdout of a command fired via subprocess.Popen ?
I've tried this, but it's not working :
import subprocess
pipe = subprocess.Popen(["cat ...
1
vote
1answer
391 views
subprocess readline hangs waiting for EOF
I have a simple c++ program that I'm trying to execute through a python script. (I'm very new to writing scripts) and I'm having trouble reading output through the pipe. From what I've seen, it ...
0
votes
2answers
576 views
python subprocess.Popen vs shlex question
my sub process command to search first off it only searches one directory that i wrote (s2) omits the first (s1). second i was doing some reading on python docs and got confused.
my code
def ...
0
votes
2answers
3k views
pygtk OSError: [Errno 2] No such file or directory. subprocess.Popen PIPE command
I'm new to python and I'm trying to make a search bar that searches only 2 directories using two find commands and output the results into an ordered list [].
def search_entry(self, widget,):
...

