我想使用“ diff”来得到字符之间的行差和字符差。 例如,考虑:
文件1
abcde
abc
abcccd
文件2
abcde
ab
abccc
使用 Diff-u我得到:
@@ -1,3 +1,3 @@
abcde
-abc
-abcccd
\ No newline at end of file
+ab
+abccc
\ No newline at end of file
然而,它只显示了这些线条的变化,我想看到的是这样的:
@@ -1,3 +1,3 @@
abcde
-ab<ins>c</ins>
-abccc<ins>d</ins>
\ No newline at end of file
+ab
+abccc
\ No newline at end of file
你明白我的意思。
现在,我知道我可以使用 其他引擎来标记/检查特定行上的差异。但我宁愿使用一个工具来完成所有工作。