[idea] diff mode
Author: rubenruaCreated Mar 31, 2021Updated Apr 2, 2021
Labels💡 spark
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.
Source: akavel/up