What is a good method for using diff to show a percentage difference between two files?
Such as if a file has 100 lines and a copy has 15 lines that have been changed the diff-percent would be 15%.
What is a good method for using diff to show a percentage difference between two files?
Such as if a file has 100 lines and a copy has 15 lines that have been changed the diff-percent would be 15%.
Something like this perhaps?
Two files, A1 and A2.
$ sdiff -B -b -s A1 A2 | wc
would give you how many lines differed. wc gives total, just divide.
The -b and -B are to ignore blanks and blank lines, and -s says to suppress the common lines.
Hello. I just tried the line postet by MKB (sdiff -B - b - s A1 A2 | wc) and I get three numbers as a result:
51, 436 and 3133 (in this order)
what do they mean? Which is which? Thanks! :)