Below code can be used display uncommon fields in two files, side by side.
sdiff -l file1 file2 | cat -n | grep -v -e '($'
Below code will display common fields along with line numbers in the output.
diff -y file1 file2 | cat -n | grep -v -e '($'
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…