Tagged Questions

9
votes
3answers
1k views

Piping as interprocess communication

I am interested in writing separate program modules that run as independent threads that I could hook together with pipes. The motivation would be that I could write and test each module completely ...
6
votes
2answers
270 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 ...
4
votes
5answers
792 views

Combining echo and cat on Unix

Really simple question, how do I combine echo and cat in the shell, I'm trying to write the contents of a file into another file with a prepended string? If /tmp/file looks like this: this is a test ...
3
votes
1answer
58 views

piping in UNIX doubt

In The Unix Programming Environment by K & P, it is written that " The programs in a pipeline actually run at the same time, not one after another. This means that programs in a pipeline can be ...
0
votes
2answers
44 views

Redirecting input and output files on Unix and C++ using stdio

I need to do this: $ ./compiledprog.x < inputValues > outputFile so that I read from the file inputValues which for our case might just be \n separated int values or whatever. Then anything ...
0
votes
1answer
99 views

How can I pipe command output to a pause command, which defers execution for a given length of time?

Is it possible to do something like this in unix? monit restart | pause 120 | monit status I just happen to be monitoring monit which restarts and then i find myself repeatedly outputting the ...