A mode to compare the difference between the output of two files. Like: ``` $ diff <(cat file1.txt |& ./up) <(cat file2.txt |& ./up) ``` It will be very useful to compare two different log of a process. For instance, looking for a bug comparing the correct and the incorrect log output.