分类: LINUX
2009-03-25 15:56:48
Diff 简单的说,diff的功能就是用来比较两个文件的不同,然后记录下来,也就是所谓的补丁。语法格式:diff 【选项】 源文件(夹) 目的文件(夹),就是要给源文件(夹)打个补丁,使之变成目的文件(夹),术语也就是“升级”。下面介绍三个最为常用选项:
-r 是一个递归选项,设置了这个选项,diff会将两个不同版本源代码目录中的所有对应文件全部都进行一次比较,包括子目录文件。
-N 选项确保补丁文件将正确地处理已经创建或删除文件的情况。
-u 选项以统一格式创建补丁文件,这种格式比缺省格式更紧凑些。 |
Patch patch就是利用diff制作的补丁来实现源文件(夹)和目的文件(夹)的转换。这样说就意味着你可以有源文件(夹)――>目的文件(夹),也可以目的文件(夹)――>源文件(夹)。 patch文件的结构
补丁头
补丁头是分别由---/+++开头的两行,用来表示要打补丁的文件。---开头表示旧文件,+++开头表示新文件。
一个补丁文件中的多个补丁
一个补丁文件中可能包含以---/+++开头的很多节,每一节用来打一个补丁。所以在一个补丁文件中可以包含好多个补丁。
块
块是补丁中要修改的地方。它通常由一部分不用修改的东西开始和结束。他们只是用来表示要修改的位置。他们通常以@@开始,结束于另一个块的开始或者一个新的补丁头。
块的缩进
块会缩进一列,而这一列是用来表示这一行是要增加还是要删除的。
块的第一列
+号表示这一行是要加上的。
-号表示这一行是要删除的。
没有加号也没有减号表示这里只是引用的而不需要修改。 -p0 选项要从当前目录查找目的文件(夹)
-p1 选项要忽略掉第一层目录,从当前目录开始查找。 而diff补丁文件则可以在任意位置,只要
指明了diff补丁文件的路径就可以了。当然,可以用相对路径,也可以用绝对路径。不过我一般习惯用相对路径。 -E 选项说明如果发现了空文件,那么就删除它
-R 选项说明在补丁文件中的“新”文件和“旧”文件现在要调换过来了(实际上就是给新版本打补丁,让它变成老版本)
|
[root@max patch]# ls test0 test1 [root@max patch]# diff -uN test0 test1 > test.patch [root@max patch]# cat test.patch --- test0 2009-03-25 15:52:26.000000000 +0800 +++ test1 2009-03-25 15:16:10.000000000 +0800 @@ -1,4 +1,4 @@ +22222222222 11111111111 -11111111111 -11111111111 +22222222222 11111111111 [root@max patch]# cat test0 11111111111 11111111111 11111111111 11111111111 [root@max patch]# cat test1 22222222222 11111111111 22222222222 11111111111 [root@max patch]# patch -p0 -i test.patch patching file test0 [root@max patch]# cat test0 22222222222 11111111111 22222222222 11111111111 [root@max patch]# 来个降级 [root@max patch]# patch -Rp0 -i test.patch patching file test0 [root@max patch]# cat test0 11111111111 11111111111 11111111111 11111111111 [root@max patch]# |
[root@max patch]# ls test1 test2 [root@max patch]# cat test1/test0 11111111111 11111111111 11111111111 11111111111 [root@max patch]# cat test1/test1 22222222222 2222222222 222222222222 2222222222222 222222222222 222222222222222 222222222222222222 [root@max patch]# diff -uNr test1 test2 > text.patch [root@max patch]# cat text.patch diff -uNr test1/test0 test2/test0 --- test1/test0 2009-03-25 16:02:44.000000000 +0800 +++ test2/test0 2009-03-25 16:07:50.000000000 +0800 @@ -1,4 +1,8 @@ 11111111111 +111222211111 +11122211111 11111111111 -11111111111 -11111111111 +333333333333 +3333333333333333 +33333333333333333333 +333333333333333 diff -uNr test1/test1 test2/test1 --- test1/test1 2009-03-25 16:06:44.000000000 +0800 +++ test2/test1 2009-03-25 16:08:50.000000000 +0800 @@ -1,8 +1,10 @@ 22222222222 2222222222 222222222222 -2222222222222 -222222222222 -222222222222222 222222222222222222 +7777777777777777 +5555555555555555 +444444444444444444444 +3333333333333333 + [root@max patch]# [root@max patch]# patch -p0 -i text.patch patching file test1/test0 patching file test1/test1 [root@max patch]# 降级: [root@max patch]# patch -Rp0 -i test.patch |