Say I have too programs a and b that I can run with ./a and ./b.
a
b
./a
./b
Is it possible to diff their outputs without first w
Adding to both the answers, if you want to see a side by side comparison, use vimdiff:
vimdiff
vimdiff <(./a) <(./b)
Something like this: