typora/note/linux/command/diff 文件不同.md

5 lines
326 B
Markdown
Raw Permalink Normal View History

2024-12-11 21:48:55 -05:00
- 逐行比较文件的不同
- 告诉我们怎么改变第一个文件才能与第二个文件一样
![0d845598e834d2c9d8526aafdbfd3aaa.png](../../../_resources/0d845598e834d2c9d8526aafdbfd3aaa.png)
- diff -u file1 file2 > file.patch 保存不一致文件的补丁
- patch file file.patch 按照补丁直接修改file1文件