A one-line with 2 tmp files (not what you want) would be:
foo | bar > file1.txt && baz | quux > file2.txt && diff file1.txt file2.txt
With bash, you might try though:
diff <(foo | bar) <(baz | quux)
As mentioned in the BenM's detailed answer, < creates anonymous named pipes -- managed by bash -- so they are created and destroyed automatically, unlike temporary files.
However, Daniel Cassidy points out the "without using temporary files" part of the question is not respected: the file system is still modified (with a directory entry representing the named pipe created and then removed)
Otherwise, like you mention in your question, you have to use - as STDIN
foo | bar > file1.txt && baz | quux | diff file1.txt - && rm file1.txt
, since there seems to be no easy way to pipe multiple inputs to one command.
You can only pipe one output to multiple inputs with the tee command:
ls *.txt | tee /dev/tty txtlist.txt
The above command displays the output of ls *.txt to the terminal and outputs it to the text file txtlist.txt.
