Pipes provide a mechanism of redirecting output of one computation unit into input of another computation unit. Unix pipes are a system level implementation of this mechanism for programmes as computation units.

learn more… | top users | synonyms

0
votes
1answer
9 views

How do I pick a sub-element in Yahoo Pipes?

Below is an example of the type of RSS structure I am trying to parse (it is not complete for ease of explanation): <rss> <item> <span> <a ...
-1
votes
1answer
31 views

Pipe implementation in Linux using c

I am trying to implement following command, ls | grep "SOMETHING" in c programming language. Can anybody please help me with this. I want to fork a child , where i will run ls command using ...
0
votes
1answer
27 views

Handling stdin and stdout

I'm trying to use subprocess to handle streams. I need to write data to the stream, and be able to read from it asynchronously (before the program dies, because mine's will take minutes to complete, ...
0
votes
1answer
61 views

Linux C comunication beetween processes using signals and pipes

I have a program to write in C. It must create 3 processes which work all time. Those 3 processes receive signals(stop, pause, resume), when it receive one of those signals it sends other signal to ...
-5
votes
0answers
41 views

Linux C pipes work only first time [closed]

I have a big problem with using pipes in Linux C. Here is the code of my program: void die(char *err){ perror(err); exit(4); } void sndsig(int sig){ if(sig==SIGINT){ sflag=0; ...
0
votes
1answer
84 views

Pipes not working while implementing a minishell

I'm actually trying to implement a basic minishell in C. For doing that, I made a fonction which parse what the user enter in the console. I parsed it and then I would like to send the command to the ...
0
votes
3answers
54 views

Piping output from one program to another not working for this particular program

I expect this is a basic question, but I haven't been able to find an answer. I'm building a web server in C++, and in order to help me visualise the system as it's running I'm building a separate ...
0
votes
0answers
7 views

Using _pipe in a non child interprocess communications

I was wondering, is it possible to use named '_pipe's in creating interprocess communications between two processes where there is no parent/child relationship? In other words if I have two ...
0
votes
1answer
15 views

Python Keep Named Pipe Open

In bash, a named pipe can be kept open with cat > mypipe. How can this be done in python? This is what I have so far: import subprocess import os if not os.path.exists("/tmp/mypipe"): ...
0
votes
1answer
32 views

set named pipe message mode

I have the following piece of code: //... SafeFileHandle handle = NativeMethods.CreateFile(pipeName, FileAccess.ReadWrite, FileShare.None, IntPtr.Zero, FileMode.Open, FileAttributes.Normal, ...
0
votes
1answer
33 views

How can i get/show the file size in real time?

I have this code im using ffmpeg.exe to compress the file and then using pipstream write im getting a bitmap from Form1 timer each 40ms and write it to a pipestream . When i close the application ...
0
votes
0answers
59 views

Dynamic pipe creation/plumbing in C

I need a little help with my plumbing. I'm trying to create a program that begins with a single process, spawns child processes based on a user-defined number, and then flow back into another ...
1
vote
1answer
28 views

Pausing a script that has been piped to sh

If i run echo "read -p 'test'" | sh Nothing happens. How can I get the effect I want? Note: the reason I want to do this is because I keep a number of scripts like this one on github and I run ...
0
votes
1answer
44 views

Windows Batch File :: Output to Variable when using Pipes

Is it possible to output the result of a command to a variable when using pipes? Example batch file script: @echo off cls echo Script Started setlocal enableextensions ::prove that functionality ...
0
votes
1answer
28 views

pipe returning null on file open using c code in android ndk

I'm trying to write some native code to my android app that uses 2 file pipes to communicate between the java code and the native code. The eventual aim is for the native code to communicate over the ...
1
vote
2answers
26 views

Pipes in unix - is the value implicitly supplied as an argument?

I would like to delete all files ending in .orig recursively from the current directory. Will this do the trick? ls -R | grep ".orig$" | rm Are the results of grep passed implicitly as an argument ...
1
vote
1answer
25 views

remove target and rel attributes from links with yahoo pipes regex

I'm trying to remove rel and target attributes from a RSS description using regex but can't seem to figure it out. I'm able to remove classes and styles, but rel and target just won't work. I've tried ...
0
votes
1answer
27 views

I'm trying to change pipe size using F_SETPIPE_SZ but when compiling it says it is undeclared?

#include <unistd.h> #include <fcntl.h> int exec[2]; int pipesize = 8192; if(pipe(exec) ==-1) { perror("pipe"); return -1; } fcntl(exec[1],F_SETPIPE_SZ,&pipesize); I'm running ...
1
vote
1answer
32 views

Effective debugging techniques for unix pipes?

I'm very new to unix programming, so please bear with me. :) I'd like to pass data between two processes. I was going to use named pipes, but read about these "half-duplex" pipes, and it was very ...
2
votes
0answers
79 views

How to emit/pipe array values as a readable stream in node.js?

What is the best way to create a readable stream from an array and pipe values to a writable stream? I have seen substack's example using setInterval and I can implement that successfully using 0 for ...
0
votes
1answer
22 views

How to pipe program output so as to eliminate specific text

I have a program which produces results to the terminal which contains a header and a footer. The header ends when the first line containing only '-' characters is encountered and the footer begins ...
1
vote
2answers
29 views

Pipe gsutil output to file

Greetings StackOverflow, I'm working on a small project on Windows which needs to read the output of GSUTIL's copy function. Problem is, the output of the copy function doesn't seem to work via the ...
0
votes
0answers
28 views

Forked execvp does not return, parent waits indefinitely

Code with some comments: http://pastebin.com/nrXayHx5 I'm executing the command "du" repeatedly on a lot of files and directories, it works for a lot of my input but there's one particular directory ...
0
votes
0answers
25 views

Yahoo Pipes to enrich RSS descriptions dynamically with ${title} variable?

In Yahoo Pipes, By using the Regex module I can replace item.link .* with a url such as https://www.google.com/webhp#output=search&sclient=psy-ab&q=${title} What this accomplishes is ...
0
votes
1answer
37 views

Piping text between processes in node?

I'm connecting to a remote server via ssh (via a child process) and so I want to see the output of this in the terminal, then when I exit the server I get back to my node program. It's working except ...
0
votes
0answers
33 views

Yahoo pipe using XPath Fetch Page showing null

I'm building a Yahoo Pipe using the XPath Fetch Page module. You can see my pipe here. I can see the right information shown in the Debugger, showing 13 items, but when I run my pipe I'm getting the ...
2
votes
2answers
46 views

Getting different output from openssl when piping file into command

I would like to sign a file using a dsa key and openssl. The DGST(1) man page says the following: file... file or files to digest. If no files are specified then standard input is used. ...
0
votes
0answers
69 views

C Inter Process Communication

I am trying to write a program which take n number of processes and pass the output of each parent process to the input to the the child . I guess that the problem is in closing the pipes . One ...
0
votes
0answers
63 views

Completing my own shell code

I have created a shell in C and here is the code.I have also commented the code. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/wait.h> #include ...
0
votes
1answer
29 views

Reading only one “message” from a pipe each time?

I have two processes connected with a pipe. One process has several threads writing messages on the pipe. The other process reads the pipe and process the messages. The problem is that, when the ...
0
votes
0answers
32 views

How to improve the IPC through the pipes?

Help improve this code - the IPC through the pipes. I think that use function replace("\n", "\()") is unsafe, because string pickle.dumps(data) may include symbols "\()". Are there any sensible ways? ...
0
votes
1answer
30 views

C++ Pipes / ReadFile lpNumberOfBytesRead / DLL

I seem to have a problem with creating a pipe between my c# app & c++ app. my c++ app is a dll that gets injected into a certain program, and opens a pipe to my c# app. My problem? in ReadFile ...
0
votes
0answers
82 views

How to pipe stdin to a child and execl cat in C

In the code below, I am simply trying to send a file via stdin to a child process which will exec the cat OS command. The code compiles fine. Here is how I call it from the command line: $ ...
0
votes
2answers
85 views

xpath to extract all different id in yahoo pipes

I'm trying to build an rss feed from my website page by using yahoo pipes tool. I be able to extract only one id from a web page by using "xphat fetch page" from yahoo pipes: ...
5
votes
1answer
61 views

The difference between bash and python pipes

I have the following three python scripts: parent1.py import subprocess, os, sys relpath = os.path.dirname(sys.argv[0]) path = os.path.abspath(relpath) child = subprocess.Popen([os.path.join(path, ...
0
votes
0answers
51 views

ReadFile() causes hang on Windows XP SP3 using named pipes

We have a browser plug-in that launches a helper executable to read certain file types. Our helper program and the plug-in use named pipes to communicate with each other. All is well, but on a ...
0
votes
1answer
30 views

C++ NamedPipeClientStream Send Data

I want to send data from a C++ DLL file via pipes to a C# pip server. The server is already programmed and getting data works fine with a C# client. My simple C# client code: ...
0
votes
1answer
51 views

Multiprocessing pipes on windows with python

Does Windows support multithreading.pipes()? If yes, then what is wrong with this code? Do I need to be using reduction? The code hangs on p2.recv() and I get a RuntimeError when run from the command ...
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 ...
0
votes
2answers
69 views

Using 2 pipes to transfer between threads

I have to create a program which uses threads and pipes in Java. I have to create 2 classes which are threads. The 1st class makes a random number, then it has to pass to the 2nd class (it will have ...
2
votes
1answer
92 views

How to pipe Node.js scripts together using the Unix | pipe (on the command line)?

I see how to pipe stuff together using Node.js streams, but how do you pipe multiple scripts together using the Unix |, given that some of these scripts can be async? $ ./a.js | ./b.js Example: ...
0
votes
1answer
20 views

Limit of named pipe readers

(UNIX) I have 2 programs in C in which I use a named pipe (created by mkpipe, fopen etc.) to communicate. There is one writer and multiple readers for that pipe. Is there any way to set a maximum ...
0
votes
1answer
67 views

Using pipes to read to read and write.The program compiles but no output.Why?

I'm trying use pipes to write a string using write() from inside the parent process.And then spawn a child process wherein i read it,count the number of words and write the word count back.Then have ...
2
votes
1answer
63 views

How to read piped content in C?

I want to be able to do this: $ echo "hello world" | ./my-c-program piped input: >>hello world<< I know that isatty should be used to detect if stdin is a tty or not. If it’s not a tty, ...
-1
votes
2answers
138 views

Shared memory and pipes in C++ [closed]

I have an assignment to create three C++ programs and connect them together. In this assignment you will write THREE C/C++ programs which communicate via shared memory and pipes. The main ...
6
votes
2answers
256 views

Haskell Pipes and Branching

Problem I'm attempting to implement a simple web server with Haskell and the Pipes library. I understand now that cyclic or diamond topologies aren't possible with pipes, however I thought that what ...
0
votes
1answer
115 views

Redirect stdout with pipes and fork in C

I have an exercise about ptrace and pipes. The following code is a part from whole program. Pipes are made before main part and this_trace.s_out is 1. Main father create child and this child makes his ...
6
votes
1answer
158 views

Synchronous/Asynchronous behaviour of python Pipes

In my application I'm using pipes from the multiprocessing module to communicate between python processes. Lately I've observed a weird behaviour depending on the size of data I'm sending through ...
0
votes
1answer
15 views

Pipe file contents in g++ to compile

Is it possible to pipe the contents of a file into g++ to compile a program? I want to do this because I want to use a file from a database rather than a physical file on a disk. The file contents ...
0
votes
0answers
17 views

How to send messages via Output pipe to an Input pipe in JXSE?

Everytime i have to send a message i have to create a new input pipe. why this happen? can i use the same input pipe and output pipe to send multiple messages once they are bound? At client class ...

1 2 3 4 5 18