14
votes
8answers
393 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 …
13
votes
4answers
806 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 & …
10
votes
2answers
2k 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 …
7
votes
6answers
3k 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?
7
votes
3answers
608 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 = …
6
votes
9answers
638 views
Writing my own shell… stuck on pipes?
Hi guys,
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 …
6
votes
2answers
325 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.
…
6
votes
1answer
800 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
2answers
145 views
Problem with piping commands in C
Hi,
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 …
5
votes
2answers
96 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 …
5
votes
4answers
251 views
Trick an application into thinking it’s 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 …
5
votes
2answers
314 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) {
…
5
votes
3answers
2k views
Cross-platform (linux/Win32) nonblocking C++ IO on stdin/stdout/stderr
I'm trying to find the best solution for nonblocking IO via stdin/stdout with the following characteristics:
As long as there is enough data, read in n-sized chunks.
If there's not enough data, read …
4
votes
4answers
402 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, …
4
votes
3answers
497 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
…
