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

learn more… | top users | synonyms

120
votes
5answers
29k views

How to pipe stderr, and not stdout?

I have a program 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 ...
41
votes
9answers
50k views

What are named pipes?

What are they and how do they work? Context happens to be SQL Server
28
votes
1answer
6k 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()? ...
25
votes
8answers
51k views

Bash script, read values from stdin pipe

I'm trying to get bash to process data from stdin that gets piped it, but no luck, what I mean is none of the following work: echo "hello world" | test=($(< /dev/stdin)); echo test=$test test= ...
21
votes
4answers
9k 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 ...
20
votes
4answers
3k 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 ...
19
votes
5answers
10k 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] ...
19
votes
5answers
9k views

Pipe buffer size is 4k or 64k?

I read in multiple places that the default buffer size for a pipe is 4kB (for instance, here), and my ulimit -a tends to confirm that statement: $ ulimit -a core file size (blocks, -c) 0 ...
17
votes
2answers
3k 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 ...
15
votes
3answers
16k 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 ...
15
votes
5answers
17k views

tail pipe to grep pipe to another grep seems to be a pipe too far

Basically I'm wondering why this doesn't output anything: tail --follow=name file.txt | grep something | grep something_else You can assume that it should produce output I have run another line to ...
14
votes
3answers
14k views

Pipe subprocess standard output to a variable

I want to run a command in pythong, using the subprocess module, and store the output in a variable. However, I do not want the command's output to be printed to the terminal. For this code: def ...
14
votes
10answers
1k 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 ...
13
votes
1answer
136 views

How do I get java to exit when piped to head

I have a java process which prints out a lot of text. Sometimes I just want to see a bit of the text. With normal programs I can just do: $ myprog | head I'll just see 10 lines of output from ...
12
votes
4answers
2k views

Pipe character in Python

I see a "pipe" character (|) used in a function call: res = c1.create(go, come, swim, "", startTime, endTime, "OK", ax|bx) What is the meaning of the pipe in ax|bx?
12
votes
5answers
1k views

Need to avoid subprocess deadlock without communicate

I need a execute a command that produces a lot of output and takes a lot of time to execute (> 30 minutes). I was thinking of using subprocess.Popen to do it. I need to capture the output of the ...
11
votes
11answers
6k views

How to get the PID of a process that is piped to another process in Bash?

I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat. ( tail -f $1 & ) | nc -l -p 9977 But the problem is that when the ...
11
votes
6answers
7k 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?
10
votes
3answers
609 views

Bash: why the pipe is terminated?

This is a piped command for generating 10 characters password at random: cat /dev/urandom | base64 | head -c 10 My question is cat /dev/urandom | base64 is an infinite output stream which will not ...
10
votes
1answer
3k views

Node.js and piping a ConnectionListener

The Node.js documentation provides an example for creating an echo server: var net = require('net'); var server = net.createServer(function (c) { c.write('hello\r\n'); c.pipe(c); }); ...
10
votes
6answers
3k 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 ...
10
votes
1answer
1k 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, ...
10
votes
2answers
646 views

What is the preferred cross-platform IPC Perl module?

I want to create a simple IO object that represents a pipe opened to another program to that I can periodically write to another program's STDIN as my app runs. I want it to be bullet-proof (in that ...
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)
9
votes
2answers
448 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 ...
9
votes
2answers
1k 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.
9
votes
4answers
2k 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 ...
9
votes
3answers
547 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 ...
9
votes
6answers
4k views

How do you construct a read-write pipe with lua?

I'd like to do the equivalent of: foo=$(echo "$foo"|someprogram) within lua -- ie, I've got a variable containing a bunch of text, and I'd like to run it through a filter (implemented in python as ...
8
votes
4answers
1k 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?
8
votes
3answers
3k 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
2answers
822 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
1k views

How can I pipe initial input into process which will then be interactive?

I'd like to be able to inject an initial command into the launching of an interactive process, so that I can do something like this: echo "initial command" | INSERT_MAGIC_HERE some_tool tool> ...
8
votes
2answers
202 views

How does `gvim -` work with `--remote`?

I want to look at the output of a command in a GVim window that's already opened. To look at the output of a command in a new GVim window, I'd do: mycommand | gvim - To open a file an existing ...
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 ...
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, ...
7
votes
6answers
2k views

How to read from stdin or from a file if no data is piped in Python?

I have a CLI script and want him to read data from a file. It should be able to read it in two ways : cat data.txt | ./my_script.py ./my_script.py data.txt A bit like grep, for example. What I ...
7
votes
5answers
4k views

Get length of .wav from sox output

I need to get the length of a .wav file. Using: sox output.wav -n stat Gives: Samples read: 449718 Length (seconds): 28.107375 Scaled by: 2147483647.0 Maximum amplitude: ...
7
votes
6answers
7k 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(): ...
7
votes
1answer
926 views

Check whether stderr is a pipe in bash

I have a bash script that prompts the user for input with 'read'. If stdout or stderr is piped to something other than a terminal, I would like to suppress this step. Is that possible?
7
votes
3answers
186 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 ...
7
votes
2answers
875 views

bash command preserve color when piping [duplicate]

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 ...
7
votes
3answers
869 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": ...
7
votes
3answers
1k views

Pipe vs. Temporary File

Is there a big performance difference between: Process A writing to a temp file, and process B reading that file Process A writing to a pipe, and process B reading from that pipe I'm curious to ...
7
votes
2answers
497 views

Do I understand how Unix file descriptors work in C?

The short program below is intended to iterate over argv passed from the command line and exec each argument. This is not my homework, but rather it is something I am doing in preparation for doing my ...
6
votes
2answers
261 views

Is it possible to colorize output piped to more?

I have ls and grep aliased to 'ls --color=auto' and 'grep --color=auto' for colorized output, but when I pipe to more the color is lost. Neither more nor less seems to have a param for colorizing ...
6
votes
5answers
265 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 ...
6
votes
11answers
6k 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

how to redirect stdout of 2nd process back to stdin of 1st process?

I have two processes which I need to connect like this: proc1 -- sends output to proc2 proc2 -- sends output to proc1 So far, all pipe examples are of this kind: proc1 | proc2 That's nice, but ...
6
votes
2answers
386 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 ...

1 2 3 4 5 28