So my question is, can I somehow send the data to my program and then send the same data and its result to another program without creating a temporary file (in my case ouputdata.txt). It is preferable to use linux / bash lines.
I am currently doing the following:
cat inputdata.txt | ./MyProg> outputdata.txt
cat inputdata.txt outputdata.txt | ./MyProg2
bash pipe
Daniel W
source share