Tagged Questions

A Unix pipe connects file descriptors of two processes. A pipe is created with the POSIX pipe() function declared in <unistd.h>. Shells provide pipe creation between processes using "|".

learn more… | top users | synonyms

30
votes
2answers
6k views

How to pipe stderr, and not stdout?

I have a problem that writes information to stdout and stderr, and I need to grep through what's coming to stderr, while disregarding stdout. I can of course do it in 2 steps: command > /dev/null ...
13
votes
9answers
575 views

Is it safe to pipe the output of several parallel processes to one file using >>?

I'm scraping data from the web, and I have several processes of my scraper running in parallel. I want the output of each of these processes to end up in the same file. As long as lines of text ...
11
votes
1answer
242 views

Python multiprocessing - Pipe vs Queue

What are the fundamental differences between queues and pipes in Python's multiprocessing package? In what scenarios should one choose one over the other? When is it advantageous to use Pipe()? ...
10
votes
3answers
2k views

With bash, how can I pipe standard error into another process?

It's well known how to pipe the standard ouput of a process into another processes standard input: proc1 | proc2 But what if I want to send the standard error of proc1 to proc2 and leave the ...
10
votes
3answers
6k views

How do you use Notepad++ regex pipe | for strings longer than one character?

I'm trying to get notepad++ to regex find all instances of "abc" and "def" in the following sentence: The abc went to the def. None of the following syntaxes seem to work: abc|def [abc|def] ...
8
votes
3answers
86 views

Why does taking stdin from a file differ from receiving it over a pipe?

Using bash I often want to get the headings of a large csv file and search the rest for a particular entry. I do this as follows. $ (head -1; grep mike) < tmp.csv name,age,favourite colour ...
8
votes
2answers
278 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 ...
8
votes
2answers
195 views

F#: killing redundancy in Map/Reduce/Filter

Let's say I have a list and a set and I want to do some stuff with them: let outA = inA |> List.map(fun x -> x + 1) |> List.filter(fun x -> x > 10) let outB = inB |> Set.map(fun x ...
8
votes
6answers
2k views

Vim: Pipe selected text to shell cmd and receive output on vim info/command line

I want to pipe the selected text to a shell command and receive the one-line output from this shell command on the vim info/command line? What I'm really trying to do: Pipe the selected text to a ...
8
votes
3answers
7k views

How do you pipe input through grep to another utility?

I am using 'tail -f' to follow a log file as it's updated: tail -f logfile I next pipe the output of that to grep to show only the lines containing a search term ("org.springframework" in this ...
7
votes
2answers
122 views

How do I prevent SIGPIPE when using boost::asio?

I'm using a pipe to communicate between two processes on Gnu/Linux. The receiving end closes the pipe while the sending end is still trying to send data. Here is some code that emulates the ...
7
votes
2answers
1k 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, ...
7
votes
1answer
484 views

Piping data to Linux program which expects a TTY (terminal)

I have a program in Linux which refuses to run if its stdin/stdout is not a TTY (terminal device). Is there an easy-to-use tool which will create a PTY, start the program with the newly created TTY, ...
7
votes
4answers
1k 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 ...
7
votes
2answers
617 views

What's the advantage of queues over pipes when communicating between processes?

What would be the advantage(s) (if any) of using 2 Queues over a Pipe to communicate between processes? I am planning on using the multiprocessing python module.
6
votes
4answers
280 views

Piping command output to tee but also save exit code of command

I have a shell script in which I wrap a command (mvn clean install), to redirect the output to a logfile. #!/bin/bash ... mvn clean install $@ | tee $logfile echo $? # Does not show the return code ...
6
votes
2answers
2k views

Pipe subprocess standard output to a variable

I've searched around online, but can't find the answer to my question. What I want to do is run a command in pythong, using the subprocess module, and store the output in a variable. However, I do not ...
6
votes
2answers
213 views

What happens if during a signal handling in UNIX, the same signal gets sent to the program?

Any ideas on this? Is there some kind of a signal queue, or does it get dropped? While we are at this question, is it true that signal handlers should do as minimal work as possible? I read ...
6
votes
3answers
511 views

Behavior of a pipe after a fork()

When reading about pipes in Advanced Programming in the UNIX Environment, I noticed that after a fork that the parent can close() the read end of a pipe and it doesn't close the read end for the ...
6
votes
2answers
948 views

Preserve colouring after piping grep to grep

There is a simlar question in Preserve ls colouring after grep’ing but it annoys me that if you pipe colored grep output into another grep that the coloring is not preserved. As an example grep ...
6
votes
4answers
647 views

How do you specify filenames within a zip when creating it on the command line from a pipe?

I'm trying to create a zip file from file contents which are being piped in, e.g. mysql [params and query] | zip -q output.zip - This writes the zip correctly, but when you open the zip, the file ...
6
votes
1answer
2k views

Python: is os.read() / os.write() on an os.pipe() threadsafe?

Consider: pipe_read, pipe_write = os.pipe() Now, I would like to know two things: (1) I have two threads. If I guarantee that only one is reading os.read(pipe_read,n) and the other is only writing ...
6
votes
2answers
263 views

Distinguishing a pipe from a file in Unix

Given a FILE*, is it possible to determine the underlying type? That is, is there a function that will tell me if the FILE* is a pipe or a socket or a regular on-disk file?
6
votes
11answers
4k views

Efficient data transfer from Java to C++ on windows

I'm looking to stream lots of data (up to ~1 Gbit) from Java to a C++ application (both on the same machine). I'm currently using a FIFO on Linux but need a Windows solution too. The most ...
6
votes
5answers
4k views

C# Console receive input with pipe

I know how to program Console application with parameters, example : myProgram.exe param1 param2. My question is, how can I make my program works with |, example : echo "word" | myProgram.exe?
5
votes
4answers
64 views

Shell pipe: Exit immediately when one command fails

I'm using a pipe of several commands in bash. Is there a way of configuring bash to terminate all commands in the whole pipeline immediately should one of the commands fail? In my case, the first ...
5
votes
1answer
106 views

Running Perl-Script from Java (embedded in Perl)

Perl accepts a scipt via STDIN. After pressing CTRL-D perl knows the "End of Script". After doing so, the script is executed. Now my question: I wand to do that from Java. Open Process Perl Copy ...
5
votes
6answers
132 views

C: dup2, pipe and fork not working as expected

I'm trying to do a simple fork -> execute another program -> say "hello" to that child process -> read back something -> print what received. The program used as child just waits for any line of ...
5
votes
4answers
148 views

Can someone explain what dup() in C does?

I know that dup, dup2, dup3 "create a copy of the file descriptor oldfd"(from man pages). However I can't digest it. As I know file descriptors are just numbers to keep track of file locations and ...
5
votes
2answers
109 views

Pipe between sockets

I've got a C++ server that acts as a mirror. What gets in gets out to a different socket. Right now, it reads the socket into a buffer and writes it into the other socket. I want to improve the ...
5
votes
3answers
131 views

Best and safe way to transfer data over a pipe on different platform

Currently I am facing an issue where i am passing a buffer object over a pipe from x64 arch to x86 arch. The object also contains some pointer values, which is 8 bytes in x64 which the same pointer ...
5
votes
2answers
291 views

Test if stdin has input for C++ (windows and/or linux)

I basically want to test if stdin has input (like if you echo and pipe it). I have found solutions that work, but they are ugly, and I like my solutions to be clean. On linux I use this: bool ...
5
votes
2answers
143 views

Unix FIFO in go?

Is there any way to create a unix FIFO with Go language? There is no Mkfifo, nor Mknod in os package, though I expected named FIFOs are largely used in posix OS's. In fact, there is a function for ...
5
votes
1answer
452 views

Python: select() doesn't signal all input from pipe

I am trying to load an external command line program with Python and communicate with it via pipes. The progam takes text input via stdin and produces text output in lines to stdout. Communication ...
5
votes
3answers
393 views

Read-write pipe() communication in R

Most languages support two-way process communication. For example, in Python, I can (sloppily) do: >>> from subprocess import * >>> p = Popen('nslookup', stdin=PIPE, stdout=PIPE) ...
5
votes
4answers
410 views

How to make a python script “pipeable” in bash?

I wrote a script and I want it to be pipeable in bash. Something like: echo "1stArg" | myscript.py It's possible? How?
5
votes
2answers
382 views

What does [a|b|c] evaluate to in SWI-Prolog?

The pipe operator in prolog returns one or more atomic Heads and a Tail list. ?- [a,b,c] = [a,b|[c]]. true. Nesting multiple pipes in a single match can be done similar to this: ?- [a,b,c] = ...
5
votes
3answers
465 views

How do I get the output from a Perl pipe as it becomes available?

The following code is working sort of fine: open( PIPE, '-|', 'ant' ); for( <PIPE> ) { print; } However, it doesn't do what I want. Since the Ant build can take 5 minutes, I would like to ...
5
votes
5answers
770 views

How can I pipe input into a Java command from Perl?

I need to run a string through a Java program and then retrieve the output. The Java program accepts the string through standard input. The following works: my $output = `echo $string | java -jar ...
5
votes
2answers
979 views

Python 2.6 send connection object over Queue / Pipe / etc

Given this bug (Python Issue 4892) that gives rise to the following error: >>> import multiprocessing >>> multiprocessing.allow_connection_pickling() >>> q = ...
5
votes
2answers
2k views

in windows, how to have non-blocking stdin that is a redirected pipe?

I have a Windows C program that gets its data through a redirected stdin pipe, sort of like this: ./some-data-generator | ./myprogram The problem is that I need to be able to read from stdin in a ...
4
votes
2answers
146 views

How can I use pipe in this code C++?

I'm getting a big trouble because I dunno how to do this. I need to create only 2 processes that can comunicate. This is the code: /* Wrappers */ this->sock_fd = this->w_socket(); ...
4
votes
1answer
222 views

Using python multiprocessing pipes

I am trying to write a class that will calculate checksums using multiple processes, thereby taking advantage of multiple cores. I have a quite simple class for this, and it works great when executing ...
4
votes
5answers
78 views

Why doesn't “sort file1 > file1” work?

When I am trying to sort a file and save the sorted output in itself, like this sort file1 > file1; the contents of the file1 is getting erased altogether, whereas when i am trying to do the ...
4
votes
2answers
75 views

Last child forked will not die

I have the main process forking two times and thus creating two children. The two children are piped with each other like this: ls | more Now the problem is that the second child never dies. Why is ...
4
votes
2answers
116 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 ...
4
votes
2answers
165 views

bash command preserve color when piping [closed]

Possible Duplicate: Can colorized output be captured via shell redirect? setup In this case specifically I'm trying to preserve the colors in git status -s when piping it to another ...
4
votes
4answers
289 views

How to use Pipe Symbol in Java

I am using the following code to get the details of all process running in the system, Process p = Runtime.getRuntime().exec("ps aux"); BufferedReader stdInput = new BufferedReader(new ...
4
votes
3answers
137 views

Run process with string input and output

There are plenty of questions on here related to fork() and exec(). I have not found one that really makes the process of using them simple though, and making programmer's lives simple is the goal. ...
4
votes
1answer
73 views

stdin is missing for any process I pipe into which uses Windows ftype and assoc mechanism to select the correct executable

I'm on WindowsXP. This seems to affect any process, but I'll use Python3.2 to demonstrate it. A script, 'filter.py': import sys for line in sys.stdin: print(line) Running it like this: echo ...

1 2 3 4 5 12