Tagged Questions

Unix pipes are a method of redirecting output of one program into input of another program.

learn more… | top users | synonyms

41
votes
8answers
9k views

How do I use sudo to redirect output to a location I don't have permission to write to?

I've been given sudo access on one of our development RedHat linux boxes, and I seem to find myself quite often needing to redirect output to a location I don't normally have write access to. The ...
30
votes
6answers
28k views

Redirect stderr and stdout in a bash script

I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?
24
votes
2answers
12k views

bash: redirect and append both stdout and stderr

To redirect stdout in bash, overwriting file cmd > file.txt To redirect stdout in bash, appending to file cmd >> file.txt To redirect both stdout and stderr, overwriting cmd &> ...
20
votes
3answers
6k views

Starting a process with inherited stdin/stdout/stderr in Java 6

If I start a process via Java's ProcessBuilder class, I have full access to that process's standard in, standard out, and standard error streams as Java InputStreams and OutputStreams. However, I ...
19
votes
10answers
1k views

Why don't I see pipe operators in most high-level languages?

In Unix shell programming the pipe operator is an extremely powerful tool. With a small set of core utilities, a systems language (like C) and a scripting language (like Python) you can construct ...
18
votes
4answers
2k views

How can I send the stdout of one process to multiple processes using (preferably unnamed) pipes in Unix (or Windows)?

I'd like to redirect the stdout of process proc1 to two processes proc2 and proc3: proc2 -> stdout / proc1 \ proc3 -> stdout I tried proc1 | (proc2 & ...
17
votes
5answers
2k views

Detect if stdin is a terminal or pipe in C/C++/Qt?

When I execute "python" from the terminal with no arguments it brings up the Python interactive shell. When I execute "cat | python" from the terminal it doesn't launch the interactive mode. Somehow, ...
13
votes
5answers
934 views

How can I read piped input in Perl on Windows?

I am trying to create something in Perl that is basically like the Unix tee command. I'm trying to read each line of STDIN, run a substitution on it, and print it. (And eventually, also print it to a ...
13
votes
6answers
6k views

Bash Pipe Handling

Does anyone know how bash handles sending data through pipes? cat file.txt | tail -20 Does this command print all the contents of file.txt into a buffer, which is then read by tail? Or does this ...
12
votes
1answer
689 views

AnonymousPipeServerStream.Read() occasionally hangs on client exit

I have a master and a slave program who interact through a pair of anonymous pipes. The interaction looks like this: Master creates two AnonymousPipeServerStream's Master starts client process, ...
12
votes
3answers
215 views

frameworks for representing data processing as a pipeline

Most data processing can be envisioned as a pipeline of components, the output of one feeding into the input of another. A typical processing pipeline is: reader | handler | writer As a foil for ...
12
votes
2answers
271 views

Bash: Is it ok to use same input file as output of a piped command?

Consider something like: cat file | command > file Is this good practice? Could this overwrite the input file as the same time as we are reading it, or is it always read first in memory then ...
12
votes
9answers
3k views

Writing my own shell… stuck on pipes?

For the past few days I have been attempting to write my own shell implementation but I seem to have gotten stuck on getting pipes to work properly. I am able to parse a line and fork off the ...
12
votes
4answers
3k views

Trick an application into thinking its stdin is interactive, not a pipe

I'm trying to do the opposite of http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qt I'm running an application that's changing its output format because it ...
12
votes
7answers
7k views

Why doesn't more Java code use PipedInputStream / PipedOutputStream?

I've "discovered" this idiom recently, and I am wondering if there is something I am missing. I've never seen it used. Nearly all Java code I've worked with "in the wild" favors slurping data into a ...
10
votes
6answers
2k views

Force another program's standard output to be unbuffered using Python

A python script is controlling an external application on Linux, passing in input via a pipe to the external applications stdin, and reading output via a pipe from the external applications stdout. ...
10
votes
5answers
8k views

How can I get a list of all open named pipes in Windows?

Is there an easy way to test whether your named pipe is working correctly? I want to make sure that the data I'm sending from my app is actually being sent. Is there a quick and easy way to get a list ...
9
votes
3answers
696 views

Ruby pipes: How do I tie the output of two subprocesses together?

Is there an automated way to do shell piping in Ruby? I'm trying to convert the following shell code to Ruby: a | b | c... > ... but the only solution I have found so far is to do the buffer ...
9
votes
4answers
596 views

Can a PIPE in LINUX ever lose data?

And is there a upper limit on how much data can it contain?
9
votes
4answers
453 views

are posix pipes lightweight?

In a linux application I'm using pipes to pass information between threads. The idea behind using pipes is that I can wait for multiple pipes at once using poll(2). That works well in practice, and ...
8
votes
3answers
2k views

How do I use the Ant exec task to run piped commands?

I'm trying to run the following command using the 'exec' task in Ant: ls -l /foo/bar | wc -l Currently, I have my exec looking like this: <exec executable="ls" outputproperty="noOfFiles"> ...
8
votes
2answers
2k views

c# redirect (pipe) process output to another process

Hi I am trying to run a process in c# using the Process class. Process p1 = new process(); p1.startinfo.filename = "xyz.exe"; p1.startinfo.arguments = //i am building it based on user's input. ...
8
votes
3answers
1k views

Java idiom for “piping”

Is there a more concise/standard idiom (e.g., a JDK method) for "piping" an input to an output in Java than the following? public void pipe(Reader in, Writer out) { CharBuffer buf = ...
7
votes
3answers
215 views

Line-oriented streaming in Ruby (like grep)

By default Ruby opens $stdin and $stdout in buffered mode. This means you can't use Ruby to perform a grep-like operation filtering text. Is there any way to force Ruby to use line-oriented mode? I've ...
7
votes
4answers
154 views

Why is the output of my forking program different when I pipe its output?

I was looking at some simple code on fork, and decided to try it out for myself. I compiled and then ran it from inside Emacs, and got a different output to that output produced from running it in ...
7
votes
2answers
549 views

Communicate multiple times with a process without breaking the pipe?

it's not the first time I'm having this problem and its really bugging me. Whenever I open a pipe using the Python subprocess module, I can only communicate with it once, as the documentation ...
7
votes
3answers
5k views

Retrieving the output of subprocess.call()

How can I get the output of a process run using subprocess.call()? Passing a StringIO.StringIO object to stdout gives this error: Traceback (most recent call last): File "<stdin>", line 1, ...
7
votes
5answers
5k views

When should I use GCC's -pipe option?

The GCC 4.1.2 documentation has this to say about the -pipe option: -pipe Use pipes rather than temporary files for communication between the various stages of compilation. This fails to work ...
7
votes
2answers
4k views

Python - simple reading lines from a pipe

I'm trying to read lines from a pipe and process them, but I'm doing something silly and I can't figure out what. The producer is going to keep producing lines indefinitely, like this: producer.py ...
7
votes
5answers
4k views

Problem with a Python program using os.pipe and os.fork()

I've recently needed to write a script that performs an os.fork() to split into two processes. The child process becomes a server process and pases data back to the parent process using a pipe created ...
7
votes
4answers
2k views

What's the differences between system and backticks and pipes in Perl?

Perl supports three ways (that I know of) of running external programs: system: system PROGRAM LIST as in: system "abc"; backticks as in: `abc`; running it through a pipe as in: open ...
7
votes
2answers
730 views

How do I allow two concurrent processes to communicate?

I have two separate processes: a C program that outputs comma separated values followed by a newline every second, and a Perl program that accepts data (in the same format) and processes this data. ...
7
votes
7answers
3k views

Connecting input _and_output between of two commands in shell/bash

I have two (UNIX) programs A and B that read and write from stdin/stdout. My first problem is how to connect the stdout of A to stdin of B and the stdout of B to the stdin of A. I.e., something like ...
6
votes
1answer
56 views

terminate a shell script without waiting for early parts of pipeline

Consider the following script: #!/bin/bash function long_running { for i in $(seq 1 10); do echo foo sleep 100 done } long_running | head -n 1 This produces the expected ...
6
votes
1answer
144 views

chaining Popen subprocesses properly

i have a construct like the following: os.mkfifo('pipe.tmp') enc = Popen(['encoder', '-i', 'pipe.tmp']) cap = Popen(['capture', '-f', 'pipe.tmp']) here cap is a process which normally writes to a ...
6
votes
4answers
330 views

how to concatenate multiple files for stdin of Popen

I'm porting a bash script to python 2.6, and want to replace some code: cat $( ls -tr xyz_`date +%F`_*.log ) | filter args > bzip2 I guess I want something similar to the "Replacing shell pipe ...
6
votes
6answers
421 views

cat file | … vs … <file

Is there a case of ... or context where cat file | ... behaves differently than ... <file?
6
votes
2answers
271 views

Problem with piping commands in C

I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is that I'm not hooking ...
6
votes
3answers
534 views

How do I close the stdout-pipe when killing a process started with python subprocess Popen?

I wonder if it is possible to shut down the communication pipe when killing a subprocess started in a different thread. If I do not call communicate() then kill() will work as expected, terminating ...
6
votes
3answers
678 views

paste without temporary files in Unix

I'm trying to use the Unix command paste, which is like a column-appending form of cat, and came across a puzzle I've never known how to solve in Unix. How can you use the outputs of two different ...
6
votes
8answers
16k views

How to pipe list of files returned by find command to cat to view all the files

I am doing a find and then getting a list of files. how do I pipe it to another utility like cat (so that cat displays the contents of all those files) and basically need to grep something from these ...
6
votes
6answers
1k views

run the output of a script as a standalone bash command

suppose you have a perl script "foobar.pl" that prints the following to stdout date -R and you want to run whatever that perl script outputs as a standalone bash command (don't worry about security ...
6
votes
2answers
1k views

Meaning of wait((int *)0)

One such program that uses a wait function like this is this one: #include<stdio.h> #include<stdlib.h> int main() { int pid,fd[2]; int n; char line[20]; if(pipe(fd)<0) { ...
6
votes
2answers
1k views

Detect closed pipe in redirected console output in .NET applications

The .NET Console class and its default TextWriter implementation (available as Console.Out and implicitly in e.g. Console.WriteLine()) does not signal any error when the application is having its ...
6
votes
1answer
1k views

Why are pipes considered dangerous to use in Windows/unix/linux?

Why are pipes considered dangerous to use? What can be done to avoid these security issues? I'm mostly interested in Windows, but if you have other OS information, please provide.
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
3answers
95 views

When using unix pipes (in C) does the OS balance every write() with a read() or does it balance the total number of bytes?

for example, i want to get an array of 4 ints from child to parent. parent calls read(apipe, buf, sizeof(int)*4); child calls for(int i=0; i<4;i++) write(bpipe, &array[i], ...
5
votes
1answer
210 views

Replacing and then opening stdin/stdout over ssh

I'm working on a system that communicates with child processes using pipes to stdin and stdout. The child processes use a api library to facilitate this communication and I need to write unit tests ...
5
votes
2answers
228 views

Named Pipe closing prematurely in script?

ls: prwx------ 1 root root 0 fifo write.sh: #! /bin/bash while true; do echo "blah" > fifo done read.sh: #! /bin/bash while true; do cat fifo done I have two terminals open, one ...
5
votes
1answer
99 views

piping together several subprocesses

I have 5 processes p1,p2,...,p5 where I want to write some data to stdin of p1, pipe p1 output to p2 stdin and finally read the final result from output of p5. What I have tried so far: p1 = ...

1 2 3 4 5 13