I need to work with large files and must find differences between two. And I don\'t need the different bits, but the number of differences.
To find the number of dif
I believe the correct solution is in this answer, that is:
$ diff -y --suppress-common-lines a b | grep '^' | wc -l 1