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.
1
vote
1answer
23 views
unable to thread multiple external scripts in python interpreter using stdin
I have the following scripts
The perl script(fasta.pl) takes an input file(abc) and gives string.
$ ./fasta.pl abc.txt
I first tried
p1= ...
0
votes
2answers
29 views
Strange Windows/Python/Popen Issue
When I run the following:
import subprocess
subprocess.check_call('dir', shell=True)
The result always shows me the contents of C:\, no matter what directory I started the Python interpreter in. I ...
0
votes
0answers
9 views
Popen to read and write files, delay needed even if using p.wait()
I have two separate functions using Popen, one calls cmake to compile a small project, other one calls the executable file generated like this:
def cmake(self):
p = Popen('cmake', ...
1
vote
2answers
18 views
Python Popen stdin PIPE gets spamed
I have two simple programs:
test.sh
rm ~/out.txt
for ((i=0; i<10; i++)); do
read j
echo "read: '$j'" >> ~/out.txt
done
And test.py
import sub
process
proc = ...
0
votes
7answers
71 views
Remove newline/empty characters in Python string
Well, this may sound repeat, but I've tried all possibilities like str.strip(), str.rstrip(), str.splitline(),
also if-else check like:
if str is not '' or str is not '\n':
print str
But I ...
0
votes
0answers
27 views
Starting multiple services in the background in python over remote server
Summary: I have to start various services from the command line by a script which runs on a remote server, which creates subprocesses for each of the services and stores the PID in some form.
I am ...
0
votes
2answers
32 views
Python subprocess.Popen with quotes and backslash
I want to sort a tab separated file through a Python script by calling 'sort' command.
If I use this:
subprocess.Popen(["sort", r"-t$'t'", "-k1,2", "input", "-o", "output"]).wait()
I get this ...
0
votes
0answers
27 views
Big amount of files is created when using popen
i am using popen to run a command in my python script:
p = Popen(DPI_CLI_LOCATION, shell=True , bufsize=0, stdout=PIPE,stdin=PIPE)
p.stdin.write(self.data)
print ...
0
votes
0answers
26 views
Popen call not outputting to a file or determining the parameter string correctly in python
The two Popen commands run below the strings are identical yet only the second one works when I input the whole command that I run in terminal. The first one I can see the ghostscript command run as ...
0
votes
1answer
36 views
popen doesn't run a proces
I have a function that should run a process in background
function execInBackground($cmd) {
if (substr(php_uname(), 0, 7) == "Windows"){
pclose(popen('start /B '.$cmd, "r"));
}
...
0
votes
1answer
44 views
popen: 'sh: permission denied"
I'm trying to use popen. When I execute some system command (e.g. let's say ls or whatever) all works fine. But when I'm trying to execute my executable:
pipe = popen("./ <path>","r");
I get ...
0
votes
2answers
57 views
Python console and text output from Ping including /n/r [duplicate]
I dont know what is happening, but when I am printing to the console or to a text file, the newline (/n) is not functioning but rather showing in the string. Any idea how to avoid this in both the ...
0
votes
1answer
46 views
Running a linux subprocess in python with sudo
So, this is kind of confusing but essentially I'm using Django and I want to instantiate a subprocess to run a perl script. I've read that this can be done with
arg = "/some/file/path/"
pipe = ...
1
vote
1answer
38 views
How to automatically get returncode from Popen after terminating child process?
I have a Python 3 question. How do I automatically get the returncode from a Popen object after the child process terminates?
In short, I need an application to wait, but not be unresponsive (if ...
1
vote
0answers
26 views
Diagnosing ENOMEM with popen() and system() calls in C++
I'm dealing with a gargantuan C++ code for computational physics (that I didn't write) which calls other executables using system() calls. Sometimes in the middle of a simulation these system() calls ...
0
votes
1answer
48 views
How to open multiple connections using popen in python
I am trying to copy a file from file system "A" to file system "B". So I need connections to both A and B at the same time using 2 different username/passwords.
My current implementation is like the ...
-1
votes
1answer
70 views
Python Catching Popen Output
I'm experiencing some strange behavior with my Python script exiting without any error messages. Based on my debugging it is happening around a popen() call to scp a file to a server.
The code was (I ...
0
votes
0answers
36 views
CodeIgniter, opening and closing a process
This CodeIgniter controller is supposed to handle the opening and closing of a process
class Test extends CI_Controller{
private $handle;
function startProcess(){
$this->handle = ...
1
vote
1answer
33 views
Using set input for stdin based on output from stdout with python subprocess
I would like to install a software automatically from python using subprocess.Popen. During the installation, this software outputs some information and then asks user a couple of questions (e.g., ...
0
votes
3answers
50 views
why is subprocess.popen returning an empty string
I'm using python's subprocess.popen to fetch info of a video file.
output = Popen('ffmpeg -i "'+avifile+'" -dframes 0 -vframes 0',
executable="/bin/bash", stdout=PIPE, stderr=STDOUT,
...
0
votes
1answer
40 views
whats the difference between .communicate() and .communicate()[0]?
I'm using python. I'm trying to run a process and fetch the output using subprocess.popen. After reading around I see people using communicate()[0] but thats not in the docs, it is used in an example. ...
1
vote
0answers
111 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(
...
0
votes
3answers
76 views
how to kill all subprocess in python [closed]
In python I have opened 4 subprocess. Now I want to kill all previous process when new request is came in python script.
I am using python 2.7 and windows 7 OS.
Thanks,
0
votes
2answers
54 views
Using POPEN to store a value to a string using C programming
I am trying to write a C code under UNIX to read the third word from each line of a text, and store it to a string by using POPEN. However my code is giving me an error (Modifiable lvalue required ...
0
votes
2answers
31 views
Popen mixed data stream?
I've got problem with Popen and Pipes on Windows. I think Popen mixed data between stdout and stderr.
When my program reads only stdout everything is OK but when I read stdout and stderr some data ...
2
votes
1answer
46 views
Detect if pid is zombie on Linux
We can detect if some is a zombie process via shell command line
ps ef -o pid,stat | grep <pid> | grep Z
To get that info in our C/C++ programs we use popen(), but we would like to avoid ...
1
vote
1answer
132 views
Faster alternatives to Popen for CAN bus access?
I'm currently using Popen to send instructions to a utility (canutils... the cansend function in particular) via the command line.
The entire function looks like this.
def _CANSend(self, register, ...
0
votes
0answers
47 views
handling more than one subprocess with python and IDLE
I am trying to use a python script that should allow me to run some subprocesses and to extract some results. I have been looking around and I understood that using
import os
...
0
votes
1answer
55 views
Python subprocess behaves differently across distributions
I've written a small python script to act as a LSB compliant init script for an Apache Tomcat service. I've done this script and initial tests on my work laptop which runs openSUSE; The actual ...
0
votes
0answers
49 views
execute a script php in script php with exec
I try to execute a script ou execute another script
This is my code but i have the error :
Could not open input file: msgAbsReadSM.php
SCRIPT 1 (the connection work perfectly)
$action = 'ssh ...
1
vote
2answers
61 views
How to fetch data from remote url using c++ program in linux?
I wish to read an XML file hosted on web via my C++ program. I'm working on LINUX.
I'm currently using popen to read.
FILE* remote = popen("curl 'my_url_to_xml', "r")
fread(buf, 1024, 1, remote);
...
0
votes
1answer
39 views
Python BUG or I don't get how encoding works? len, find, and re.search do nothing with no empty, sucessfull subprocess.communicate() execution result
This one is very weird.
For a reason I cannot understand I cannot do nothing with the output of Popen.communicate, except for print it to terminal.
If I save the output to a variable, the variable ...
0
votes
2answers
126 views
How to execute a shell script through python
I have a script say abc.sh which has list of commands with flags.
example
//abc.sh
echo $FLAG_name
cp $FLAG_file1 $FLAG_file2
echo 'file copied'
I want to execute this script through python ...
1
vote
2answers
310 views
linux command executing by popen on C code
I have the code below that I refer the thread on here to use the popen function
int main(int argc,char *argv[]){
FILE* file = popen("ntpdate", "r");
char buffer[100];
fscanf(file, ...
1
vote
3answers
231 views
Python PIPE to popen stdin
I am attempting something very similar to real time subprocess.Popen via stdout and PIPE
I, however, want to send input to the running process as well.
If I start a process in a separate thread ...
0
votes
3answers
74 views
php with popen pipe ssh and stdin
I try to communicate two machines by ssh and pipe to get a message from one to another.
The second reads the message form the first machine with sdtin and writing in text file.
I have a machine ...
1
vote
1answer
78 views
Unwanted new lines using python Popen and pandoc to parse html?
I am trying to convert several pieces of html to latex using python and pandoc and I have got stuck with a couple of problems.
To communicate my python script with pandoc I use subprocess.Popen, ...
0
votes
1answer
75 views
Encode a movie with Unicode filename in Windows using Popen
I want to encode a movie through IO.popen by ruby(1.9.3) in windows 7.
If the file name contains only ascii strings, encoding proceed normally.
But with unicode filename the script returns "No such ...
1
vote
1answer
119 views
pclose() on file descriptor opened with popen() returns errno 10 (No child processes)
I'm running linux and I try to do the following:
Run ls on current directory (using popen)
Output the result to buffer (using fread from pipe descriptor)
close pipe (using pclose).
Everything ...
0
votes
1answer
57 views
how get the output from process opend by popen in php?
file a.php:
<?php
echo "abcdef";
?>
file b.php:
<?php
$h=popen('php a.php',r);
pclose($h);
?>
question:
I can't see the echo result on console;
why and how to see it?
I don't want ...
1
vote
1answer
108 views
Kill Process started by IO.popen automatically if parent ruby script is killed
I'm trying to run ffmpeg from ruby script in windows.
def execute_ffmpeg(command)
IO.popen(command){|io|
io.each{|line|
# Show Progress
}
}
end
command_ffmpeg = "ffmpeg -y -i ...
1
vote
1answer
152 views
subprocess.Popen in different console
I hope this is not a duplicate.
I'm trying to use subprocess.Popen() to open a script in a separate console. I've tried setting the shell=True parameter but that didn't do the trick.
I use a 32 bit ...
1
vote
1answer
141 views
fgets returning error for FILE returned by popen
I'm trying to execute a command line from my C code, but when I get to the fgets() function, I got a NULL error.
void executeCommand(char* cmd, char* output) {
FILE *fcommand;
char ...
0
votes
0answers
54 views
Cannot popen(“mplayer”)
In a code I'm writing, I have a list of commands in an array. Some commands, I just want to execute, and others I want to execute and read their output.
I want to write a function executeCommand( ...
0
votes
0answers
18 views
Why nested for loop doesn't work in this subprocess condition
I want to open a set of web page in 'httpsURL' for loop and repeat twice. However, it just only run once and never execute the outer index for loop. Any idea? Thanks.
import subprocess as sp
import ...
0
votes
2answers
158 views
How to get PID via subprocess.Popen with custom environment variable?
Using Python, how can I run a subprocess with a modified environment variable and get its PID? I assume subprocess.Popen() is along the right track...
In shell (bash), I would do this:
...
0
votes
2answers
40 views
Parsing the output of a subprocess while executing and clearing the memory (Python 2.7)
I need to parse the output produced by an external program (third party, I have no control over it) which produces large amounts of data. Since the size of the output greatly exceeds the available ...
0
votes
1answer
155 views
Python Popen sending to process on stdin, receiving on stdout
I pass an executable on the command-line to my python script. I do some calculations and then I'd like to send the result of these calculations on STDIN to the executable. When it has finished I would ...
1
vote
1answer
117 views
How to make a python script launched from subprocess.Popen stay open if an error occurs and closes when it returns normally?
Currently, I'm running this on Windows:
args = ['start', windowname, 'python', '-i', myscript]
subprocess.Popen(args, shell=True)
As you can see, I launch a subprocess running myscript in python's ...
1
vote
2answers
332 views
How to capture streaming output in python from subprocess.communicate()
Currently, I have something like this:
self.process = subprocess.Popen(self.cmd, stdout=subprocess.PIPE)
out, err = self.process.communicate()
The command I'm running streams the output, and I need ...


