vote up 0 vote down star

So my question is if I can somehow send data to my program and then send the same data AND its result to another program without having to create a temporary file (in my case ouputdata.txt). Preferably using linux pipes/bash.

I currently do the following:

cat inputdata.txt | ./MyProg > outputdata.txt

cat inputdata.txt outputdata.txt | ./MyProg2

flag

2 Answers

vote up 8 vote down check

Choice 1 - fix MyProg to write the merged output from the input and it's own output. Then you can do this.

./MyProg <inputdata.txt | ./MyProg2

Choice 2 - If you can't fix MyProg to write both input and output, you need to merge.

./MyProg <inputdata.txt | cat inputdata.txt - | ./MyProg2
link|flag
Sorry but this solution is ugly. Just fix MyProg and chain them together with pipes. – Brian C. Lane Dec 1 '08 at 16:22
a) this isn't ugly at all, b) the first choice proposes exactly that. – hop Dec 1 '08 at 16:38
vote up 4 vote down

Here is another way, which can be extended to put the output of two programs together:

( Prog1; Prog2; Prog3; ...  ) | ProgN

That at least works in Bash.

link|flag
let's mix it together to get a fine meal: ( Prog1 & Prog2 & Prog3 & ... ) | ProgN :p – Johannes Schaub - litb Dec 1 '08 at 17:40
LOL, yeah, that'll give interesting results :-D – derobert Dec 3 '08 at 14:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.