You could use regular diff to get the output if you have it installed:
diff --unchanged-line-format='%L' --old-line-format='' \
--new-line-format='' a.txt b.txt
You would run that from the command line on Linux. Or from within Vim you would run it by typing :! first as follows:
:!diff --unchanged-line-format='%L' --old-line-format='' \
--new-line-format='' a.txt b.txt
rq
2009-06-29 19:10:01