0
votes
1answer
45 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 ...
1
vote
0answers
113 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
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
109 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 ...
3
votes
3answers
133 views

Interactive pipe in C++

I need to execute an external program and access its stdin and stdout alternatively, just like console terminal itself. I have used popen(), but it does not provide a bidirectional pipe. Using pipe() ...
0
votes
3answers
123 views

Calling a shell script from python that requires a file without writing the file to disk

For simplification purposes lets assume the shell script is the cat command. In the shell it would be normally called like this: $ cat /some/path/myfile.txt Now the file will be created dynamically ...
1
vote
2answers
48 views

How to execute a script on server from client side?

I have a shell script placed at the root of a linux machine which acts as a server.I want to execute that script from client side could popen be used to achieve this or any other alternative ...
0
votes
0answers
126 views

Unbuffered communication between C++ and Python

I want to pass data from C++ to Python in Linux and I do this through a pipe. My C++ program looks like this: #include<iostream> #include<stdio.h> #include<sstream> ...
-1
votes
1answer
207 views

Crossplatform lightweight wrapper for pipe/popen

I don't want to create another bicycle and searched lightweight (not boost, poco, ace or another library) crossplatform (win/lin) wrapper under pipe/popen for C++. Any suggestions?
1
vote
1answer
143 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 ...
1
vote
0answers
179 views

Multithread daemon and SIGPIPE exit

"Program received signal SIGPIPE, Broken pipe." and terminated. I use the following code to open pipes. Correct Code - Non-blocking pipe with popen As you see, I only read from the pipe. Is it the ...
1
vote
1answer
482 views

Correct Code - Non-blocking pipe with popen

There are tons of questions about non blocking pipes, but there are NO examples of code that can be copy&paste (with little correction) and used. I got the idea and sources from this thread: ...
4
votes
1answer
808 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
105 views

Which would be faster

I have a pipe to gnuplot in c that I am passing 100,000 points as inline data. I need to plot multiple lines from this data set. The problem is that Gnuplot forgets about the inline data once it plots ...
0
votes
1answer
327 views

Piping to gnuplot, doesn't accept multiple commands

I have the following code: fprintf(temp->_fstream, "plot '-' using 1:2 title 'tittle1'\n"); _fstream is a gnuplot pipe, using the '-' enables to write the data to gnuplot directly instead of ...
2
votes
2answers
498 views

C++ write data on stdin and get output from stdout

I have one program that calls one tar.. something like popen("tar -zcvf") I want to write on the stdin... and get the output.. something like tar -zcvf - /path| tar - zxvf - so.. on one side i'll ...
3
votes
1answer
478 views

Windows pipes in binary mode

I wrote a program in windows that will play binary audio sent to it over stdin, I called it aplay(like the linux program). I then wrote a seperate program as follows FILE * f = popen("aplay.exe", ...
4
votes
2answers
157 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 ...
0
votes
1answer
265 views

using a python list as input for linux command that uses stdin as input

I am using python scripts to load data to a database bulk loader. The input to the loader is stdin. I have been unable to get the correct syntax to call the unix based bulk loader passing the ...
1
vote
1answer
572 views

Popen Communicate with PIPE does not catch all output of process

I'm trying to run a python script and capture the output of it. It seems like after the first output line it redirects to the console instead of to my string. Manage.py is a command-line utility for ...
8
votes
3answers
1k 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": ...
2
votes
2answers
611 views

How to filter a lot of data with IPC::Open2?

My task is to filter some data from perl script with external utility (the addr2line). The data size is quite large. I need to print a lot of data to stdin of program and read a lot of data back ...
3
votes
2answers
1k views

Keeping a pipe to a process open

I have an app that reads in stuff from stdin and returns, after a newline, results to stdout A simple (stupid) example: $ app Expand[(x+1)^2]<CR> x^2 + 2*x + 1 100 - 4<CR> 96 Opening ...
0
votes
2answers
335 views

Problem writing to a pipe between Fortran and C programs

I have a program written in Fortran by someone else which consequently reads a few things from the standard input and then does some calculations and outputs the result. What I want to do is to run it ...
0
votes
2answers
1k views

popen to pass binary data between processes

I am facing issue in passing binary data between processes. My program opens a pipe to ffmpeg using popen() and tries to capture the output and then stream it as HTTP server. I am doing something ...
8
votes
2answers
4k 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, ...
8
votes
3answers
4k 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 ...
8
votes
4answers
4k 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 ...
0
votes
1answer
687 views

first process of python popen pipe can't be killed

I am using this code p1 = Popen(['rtmpdump'] + cmd_args.split(' '), stdout=PIPE) p2 = Popen(player_cmd.split(' '), stdin=p1.stdout, stderr=PIPE) p2.wait() # try to kill rtmpdump # FIXME: why is this ...
8
votes
6answers
8k views

real time subprocess.Popen via stdout and PIPE

I am trying to grab stdout from a subprocess,Popen call and although I am achieving this easily by doing: cmd = subprocess.Popen('ls -l', shell=True, stdout=PIPE) for line in cmd.stdout.readlines(): ...
3
votes
1answer
2k views

Subprocess Popen and PIPE in Python

The following code prints an empty line as an output which is false. The problem is not in the permissions, since I tested the command with 777 permissions for the pdf -file. How can you fix the ...
9
votes
4answers
7k 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)
3
votes
5answers
8k views

Python - capture Popen stdout AND display on console?

I want to capture stdout from a long-ish running process started via subprocess.Popen(...) so I'm using stdout=PIPE as an arg. However, because it's a long running process I also want to send the ...
3
votes
2answers
8k views

Python - Subprocess - How to call a Piped command in Windows?

How do I run this command with subprocess? I tried: proc = subprocess.Popen( '''ECHO bosco|"C:\Program Files\GNU\GnuPG\gpg.exe" --batch --passphrase-fd 0 --output ...