我无法在unix shell上逐行显示“diff”的结果

时间:2017-12-20 16:41:59

标签: shell unix diff

概要
我在我的linux shell上使用“diff”来比较两个txt文件 我的文件是这样的:

FILE1.TXT

test1
test2
test3
test4
test5

FILE2.TXT

test6
test7
test8
test9
test10

问题
我使用这个命令diff test1.txt test2.txt
它显示

1,5c1,5
< test1
< test2
< test3
< test4
< test5
---
> test6
> test7
> test8
> test9
> test10

我想要什么

1,5c1,5
< test1
> test6
---
< test2
> test7
---
< test3
> test8
---
< test4
> test9
---
< test5
> test10

我尽力测试'diff'的所有参数,但我无法得到我想要的东西。

0 个答案:

没有答案