How do I join two named pipes into single input stream in linux
Personally, my favorite (requires bash and other things that are standard on most Linux distributions) The details can depend a lot on what the two things output and how you want to merge them … Contents of command1 and command2 after each other in the output: cat <(command1) <(command2) > outputfile Or if both commands … Read more