Tagged Questions
0
votes
1answer
26 views
why should we use stdout=PIPE in subprocess.Popen?
from subprocess import PIPE,Popen
p = Popen("ls -l",shell=True,stderr=PIPE,stdout=PIPE)
(out,err) = p.communicate()
print(out, err)
In above Popen call, if I remove stdout=PIPE, I am getting ...
1
vote
2answers
38 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', ...])
...
0
votes
1answer
32 views
Creating multiple child processes with a single pipe
I need to create three child processes, each of which reads a string from the command line arguments and writes the string to a single pipe. The parent would then read the strings from the pipe and ...
1
vote
1answer
62 views
Pipes as stdin/stdout in process communication.
I'm learning pipes and I have occured problem. I want my program to work as:
grep [word to find] [file to search] | grep -i [without word] | wc -l
It compiles and works with no errors, but it gives ...
0
votes
0answers
21 views
C++ pipe process not terminating
I made a program that takes two commands typed in by the user and pipes the first into the second. It works fine if real commands are entered but I'm having a problem getting my error check to work ...
0
votes
1answer
317 views
Why do I get a close: Bad file descriptor error for this fork pipe c program?
int main(int argc, char ** argv) {
int count = 2;
int pid, status;
int fd[count][2];
int i;
for (i = 0; i < count; i++) {
if (pipe(fd[i]) != 0) {
...
0
votes
0answers
112 views
How to create a pipe chain between processes corectly?
I want to create n processes from the current one and n-1 pipes between those n processes. First process write information into first pipe; second process read info from first pipe and write ...
2
votes
1answer
222 views
Send Password / String to External Console Application C#
I am having need to automate an external windows console application from C#. Application is basically interface to an external device. When I invoke application it will ask me for authentication ie ...
0
votes
2answers
78 views
Implementing a pipe in C?
I am trying to implement a simple shell. I fork processes this way:
void forkProcess(char* cmd[]) {
pid_t pid;
char programPath[BUFFERLENGTH] = "/bin/";
strcat(programPath, cmd[0]);
...
3
votes
2answers
208 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 = ...
0
votes
0answers
84 views
Windows OS create process use files as pipe
In Windows OS platform, I want to create a son process which use stdin and stdout.
And I will use file as the son process' input via pipe and get output as file.
What's more I need limit the running ...
0
votes
0answers
47 views
I'm having trouble handling the threads that handle the pipes in my heavy process handling program
So here's the thing:
I'm supposed to make two funcitions and a struct that will allow for heavy processes handling. This is job.h:
#include <unistd.h>
#include <sys/types.h>
#include ...
2
votes
2answers
454 views
Writing array of structures through pipe
I am learning process managing in Linux and I need to make child and parent communicate though a pipe. I have declared two structures:
typedef struct
{
double min, max, avg; /*Number stats*/
} ...
2
votes
1answer
246 views
Pipes between C# and Delphi, How to make it work?
I have a console application (Host.exe) that is written in Delphi. It accepts stdin readln and responses to stdout by writeln.
Now, I want to use Host.exe in C# application in a way that C# gives ...
0
votes
0answers
179 views
Perl: Communicating with an interactive process (IPC)
I am trying to communicate with an using perl interactive program. By interactive I mean the program puts some output to stdout, then waits for stdin. Based on the command the user enters in stdin, ...
1
vote
4answers
568 views
C pipes not communicating
I have a coding assignment wherein I am to set up a ring of processes using fork(), and then pass a message through the ring. now, the apparent issue at this point is that I cannot pass a message ...
0
votes
1answer
173 views
How can a process find the pids of processes it communicates with over a pipe?
Let's say I have the following pipeline:
$ generator_process | filter_process | storage_process
Is it possible for filter_process to find out the pid of generator_process and storage_process? If ...
1
vote
0answers
353 views
Pipe cmd.exe from a server application over a socket to a client application
I've got 2 applications - a server and a client. Basically what I wanna do is to control the cmd.exe on the server machine remotely from my client application - just piping the client input to cmd.exe ...
1
vote
2answers
271 views
How to use “anonymous” pipes for process synchronization in C?
I have been having a hard time understanding how the command pipe() works in C. As far as I know anonymous pipes are used to send/receive information between two "related" processes.
I am finding the ...
0
votes
3answers
123 views
Multiple fork()'s. How does main know pid?
I am writing a C program that creates # childs and let's them do a single task and report the result back to the main. After writing to the pipe they have to wait for another request.
I have ...
2
votes
2answers
135 views
How can I know the PID of the other end of a perl IO::Pipe
I have setup another process that I watch for output, using IO::Pipe
my $pipe = IO::Pipe->new();
my $fh = $pipe->reader( $dirWatcher );
I then setup a IO::Select to watch $fh.
That all ...
1
vote
1answer
163 views
Sending size of buffer through pipe from process to process
I have created two child processes with a pipe connection between them.
Code in process A:
char *buf;
size_t size;
buf = "some string";
size = strlen(buf);
printf("size in process A:%zu\n", size);
...
0
votes
2answers
316 views
child process hangs inside the pipe
when I execute this function with ls | head, it hangs in the second child process after printing out the files and directories. Could someone tell me what I miss here? Thanks in advance
int ...
2
votes
1answer
681 views
How to pack file using 7z with Delphi and show percent done?
When I run this from command line:
7z a 1.zip J:\test.mp4
I can see how much in % is done.
When I tried to run this from Delphi using CreateProcess and CreatePipe I got nothing until the file is ...
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 ...
1
vote
2answers
2k views
Two-Way Parent Child Communication Using 2 Pipes in C on Linux
I'm trying to create a two-way communication between parent and child processes using 2 pipes using C on Linux. The parent is my program and the child is just a random program (say "cat").
I try to ...
0
votes
1answer
123 views
Parallel pipes not closing in C?
I'm trying to pipe in C in parallel but for some reason it's not closing... it's just waiting.... Not sure if I'm describing this well cuz i'm new at this, but here's the code
... some code up here
...
2
votes
1answer
153 views
Share mercurial command server between multiple processes
I'm using Mercurial to create repositories based on other repositories (i.e. merging them together). This is done by a nice little webinterface using PHP on the server.
Unfortunately, for some tasks ...
1
vote
1answer
1k views
Write data to pipe C++
i need to do something like
echo "data" | cat
Using
echo "data" | my program
And inside my program calls the cat and sends my stdin to the cat stdin and get the stdout from the cat.
I already ...
2
votes
2answers
134 views
Do child processes copy entire arrays?
I'm writing a basic UNIX program that involves processes sending messages to each other. My idea to synchronize the processes is to simply have an array of flags to indicate whether or not a process ...
8
votes
2answers
846 views
How do I pipe the password to ssh in C++?
I have a C++ class used to start and communicate with external processes (somewhat similiar to Qt's QProcess - we can't use Qt as we're working on a small embedded system). It uses pipe and dup2 ...
1
vote
3answers
342 views
Do I have to make a new pipe for every pair of processes in C?
If I have 4 processes that I want to pipe:
process1 | process2 | process3 | process4
do I have to make 3 individual pipes likes this
int pipe1[2];
int pipe2[2];
int pipe3[2];
or can I ...
0
votes
1answer
2k views
Using signals and sigpipe
I'm working on an assignment that involves writing a program to process data (calculate pi) using fork (processes), signals and select.
I'm working right now on the signals and what I think I want to ...
-3
votes
1answer
84 views
Programming unix shells [closed]
I am in need of help writing a shell please. I am currently in the process of creating pipes and spawning associated child process to read and write to the pipe. The part that does not seem to work is ...
3
votes
1answer
1k views
How do I chain stdout in one child process to stdin in another child in C?
I've been messing around in C trying to figure out how to do this. Let's say I have my main program, the parent process. The parent creates three child processes, each of which will eventually run ...
2
votes
2answers
2k views
Process programming model using Linux pipe()
From http://pubs.opengroup.org/onlinepubs/009604599/functions/pipe.html:
The pipe() function shall create a pipe and place two file
descriptors, one each into the arguments fildes[0] and ...
2
votes
2answers
497 views
How can I write more values to a pipe and read them?
I write a program in c++ under linux where a child process should write two long values into a pipe and the parent process should read them. Until now, I onlz manages to set up two (named) pipes for ...
-1
votes
1answer
101 views
How to communicate one value between a program and a library (using mkfifo or so)?
I have a dynamical loaded library that calculates one special value. My Program needs to access this value (in C or C++).
I thought about named pipes. But they seem somehow strange for this purpose. ...
0
votes
1answer
573 views
Haskell: runInteractiveCommand: how to ignore the output given so far?
i run an external interactive program in haskell via "runInteractiveCommand" and want read the output of the program until it shows the programs prompt. So far i have
checkConsistency cal nets = do
...
1
vote
2answers
3k views
UNIX Pipes Between Child Processes
I'm trying to write a program that will spawn an arbitrary number of child processes and pipe between them, similar to a command line pipeline. In my case I'm trying to do "ls -l | more" and output ...
2
votes
1answer
222 views
Shed some light on working with pipes and subprocesses in Python?
I'm wrestling with the concepts behind subprocesses and pipes, and working with them in a Python context. If anybody could shed some light on these questions it would really help me out.
Say I have ...
0
votes
0answers
363 views
Ruby background process communication
How can I communicate with a process using anonymous pipes in Ruby?
The process in question is supposed to stay there and listen for commands from stdin. I'd also like to read it's output, which is ...
2
votes
4answers
1k views
perl hangs on exit (after closing a filehandle)
I've got a function that does (in short):
my $file = IO::File->new("| some_command >> /dev/null 2>&1")
or die "cannot open some_command for writing: $!\n";
...
undef $file;
...
