0
votes
2answers
46 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
46 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, ...
0
votes
1answer
78 views

How to determine the proper order/buffer for StdOut and StdError

I have an external console application I would like to capture it's complete output (StdOut and StdError) in real time to a memo (just as if I would double click it). Infos about the application with ...
0
votes
1answer
95 views

Delphi Console pipes switched?

I would like to read console outputs from a console with my own unit: unit uConsoleOutput; interface uses Classes, StdCtrls, SysUtils, Messages, Windows; type ...
0
votes
1answer
157 views

C multiple pipes

I am trying to implement multiple pipes in C like ls - al | less | wc I have trouble with creating the pipeline. I have a loop that is supposed to create the processes and connect them with pipes: ...
0
votes
2answers
92 views

How to wrap piped input to stdout in a bash script?

I want to write a bash script that will wrap piped input with some text. Based on Googling and trying to pick from examples. Here is what I have so far, that does not work: #!/bin/sh if readlink ...
0
votes
1answer
66 views

Simple piping explanation in C?

I need to pipe 3 programs: AddWith5.c AddWith2.c MultiplyWith3.c My code follows this pattern: int main(){ int x; scanf("%i",&x); printf("%i",x*3); return 0; } I need to pipe ...
2
votes
2answers
511 views

C - How to see if a pipe is empty

assuming a pipe, int pipe_fd[2]; pipe(pipe_fd); We fork, and expect that one process will write into the pipe at an arbitrary time. In one of the processes, we want to be able to check the ...
1
vote
1answer
74 views

Open a shell in the second process of a pipe

I'm having problems understanding what's going on in the following situation. I'm not familiar with UNIX pipes and UNIX at all but have read documentation and still can't understand this behaviour. ...
0
votes
1answer
879 views

C Programming fork() multiple pipe()

Im simulating a shell using pipes() forks() exec() dup(). Ive seen a few posts on stackoverflow to guide be along the way. But my prog seems to have similar issues as others have encountered here. ...
0
votes
2answers
316 views

Marshal (Ruby) pipes: sending serialized object to child processes

I need to serialize an object in Ruby with Marshal and send it to a sub-process via pipes. How can I do this? My code looks like the following, and my questions are in comments: data = ...
0
votes
2answers
244 views

sending struct array through pipe: win32, C

I'm trying to send a *var, that is in fact a 4 slot array, from one app to another with pipes in win32. How can I do this correctly? As far as I know, I'm doing it correctly: //sending like ...
0
votes
2answers
63 views

is there a way to workaround closing of file descriptor cretaed using pipe function

I want to know whether we can actually create a workaround/alias for closing of file descriptor. Meaning, close(fd) should do something internal to the stream associated with the fd (file descriptor). ...
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 ...
2
votes
2answers
615 views

can we use poll function with unnamed pipes?

I am trying to write a program where i need to monitor ends of unnamed pipe for certain events. Can i use unnamed pipes with poll function. If yes, can you please show me the syntax for poll function ...
1
vote
2answers
886 views

How to implement two way communication between child and parent processes using pipes which involves multiple read and writes

I have implement a scenario which involves two way communication between child and parent processes. The child process uses execvp to launch another c program (say XYZ). Parent writes data at one end ...
4
votes
4answers
319 views

posix pipe as a work queue

The normal implementations of a work queue I have seen involve mutexes and condition variables. Consumer: A) Acquires Lock B) While Queue empty Wait on Condition Variable (thus suspending ...
1
vote
2answers
116 views

The right way to send text to a pipe in C++

I opened a pipe to a program that reads text input. This is what I am currently doing FILE* p = popen("myprogram", "w"); string myBuff; //write something to myBuff fprintf(p, "%s\n", ...
0
votes
1answer
573 views

Qt two way communication over pipe to executable Linux

I am trying to write a Qt GUI application which can communicate with an executable file I have made which processes the information from the Qt GUI application. I can understand and have been able to ...
1
vote
1answer
114 views

Can gnuplot transparently open compressed data files to save storage space?

I have gigabytes of data that would be nice to compress with gzip for storage. Can gnuplot open compressed files? If it can't, is there a way to pipe the data to gnuplot so that the uncompressed file ...
2
votes
2answers
203 views

Python language support for pipes

I would like to implement in python something like this: def producer(): while True: sys.stdout.write("this is my data\n") def consumer(): while True: data = sys.stdin.read() ...
0
votes
1answer
204 views

su and pipe with variables

I am writing a shell script, and would like to pipe STDOUT to a file within a su command. The outputted file needs to be owned by another user, hence the use of su. However, I can't get pipe to work ...
2
votes
2answers
103 views

How to pipe/redirect from a program that outputs multiple values into a program that accepts just one value, to be executed for all outputs once each

I am trying to process IP addresses from traceroute,which writes to a file called td on disk,after which I do a grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]*[0-9]*[0-9]' td | uniq to get the list of ...
4
votes
2answers
983 views

Funny behavior of Unix FIFOs - How to avoid echo to FIFO closing it?

I want to output some data to a pipe and have the other process do something to the data line by line. Here is a toy example: mkfifo pipe cat pipe& cat >pipe Now I can enter whatever I want, ...
1
vote
1answer
477 views

Pipe data to redis

When I pipe the echo to redis client, I get an error. [root@server ~]$ echo "abc43345" | redis-cli set my_passwd2 (error) ERR wrong number of arguments for 'set' command But the following works as ...
5
votes
4answers
2k 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 ...
4
votes
5answers
2k views

Why does ps o/p list the grep process after the pipe?

When I do $ ps -ef | grep cron I get root 1036 1 0 Jul28 ? 00:00:00 cron abc 21025 14334 0 19:15 pts/2 00:00:00 grep --color=auto cron My question is why do I see the ...
3
votes
7answers
317 views

How to read a long from a pipe?

This concerns unnamed pipes in interprocess communication. I have a pipe and one process stores a value in it and the other want to read this valus which is numerical, either int or long. It is well ...
-1
votes
1answer
228 views

Is using a pipe under Linux faster than under a windows operating system such as XP? [closed]

I was wondering due to the programmig of a pipe-utilising program in Linux, whether it would be faster than the same program written in Windows XP. If so, what are the main reasons for this? Could it ...
1
vote
4answers
187 views

Piping in on the command line simulating a file?

I've seen the technique before, but don't know what it's called and forget the exact syntax. Let's say I need to pipe in a file to a program like: command < input-file. However, I want to directly ...
0
votes
2answers
910 views

creating a pipe from a parent process stdin to a childprocess stdin

I try to transfer the stdin of my parent process to a child process. stdin --> parentprocess --> child_eingabe[1] --> child_eingabe[0] --> childprocess --> stdin My small program works in that way, ...