Wie man die Ausgaben von zwei Befehlen mit meld in der Linux-Befehlszeile und Bash vergleicht.
yuis ASUS /mnt/c/pg$ cat > hoge.txt
hoge
hoge
fuga
fuga
foo
foo
yuis ASUS /mnt/c/pg$ cat > hoge02.txt
hoge
fuga
foo
foo
meld <(cat hoge.txt) <(cat hoge02.txt )

Mit <( [commmad] ) übergeben wir die Ausgabe als temporäre Datei an meld.
shell - Create a temporary file from a stdout redirect or pipe - Unix & Linux Stack Exchange