diff 命令是 linux上非常重要的工具,用於比較檔案的內容,特別是比較兩個版本不同的檔案以找到改動的地方。diff在命令列中列印每一個行的改動。最新版本的diff還支援二進位制檔案。diff程式的輸出被稱為補丁 (patch),因為Linux系統中還有一個patch程式,可以根據diff的輸出將a.c的檔案內容更新為b.c。diff是svn、cvs、git等版本控制工具不可或缺的一部分。
1.命令格式:
1 |
diff[引數][檔案1或目錄1][檔案2或目錄2] |
2.命令功能:
diff命令能比較單個檔案或者目錄內容。如果指定比較的是檔案,則只有當輸入為文字檔案時才有效。以逐行的方式,比較文字檔案的異同處。如果指定比較的是目錄的的時候,diff 命令會比較兩個目錄下名字相同的文字檔案。列出不同的二進位制檔案、公共子目錄和只在一個目錄出現的檔案。
3.命令引數:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
- 指定要顯示多少行的文字。此引數必須與-c或-u引數一併使用。 -a或--text diff預設只會逐行比較文字檔案。 -b或--ignore-space-change 不檢查空格字元的不同。 -B或--ignore-blank-lines 不檢查空白行。 -c 顯示全部內文,並標出不同之處。 -C或--context 與執行"-c-"指令相同。 -d或--minimal 使用不同的演演算法,以較小的單位來做比較。 -D或ifdef 此引數的輸出格式可用於前置處理器巨集。 -e或--ed 此引數的輸出格式可用於ed的script檔案。 -f或-forward-ed 輸出的格式類似ed的script檔案,但按照原來檔案的順序來顯示不同處。 -H或--speed-large-files 比較大檔案時,可加快速度。 -l或--ignore-matching-lines 若兩個檔案在某幾行有所不同,而這幾行同時都包含了選項中指定的字元或字串,則不顯示這兩個檔案的差異。 -i或--ignore-case 不檢查大小寫的不同。 -l或--paginate 將結果交由pr程式來分頁。 -n或--rcs 將比較結果以RCS的格式來顯示。 -N或--new-file 在比較目錄時,若檔案A僅出現在某個目錄中,預設會顯示:Only in目錄:檔案A若使用-N引數,則diff會將檔案A與一個空白的檔案比較。 -p 若比較的檔案為C語言的程式碼檔案時,顯示差異所在的函式名稱。 -P或--unidirectional-new-file 與-N類似,但只有當第二個目錄包含了一個第一個目錄所沒有的檔案時,才會將這個檔案與空白的檔案做比較。 -q或--brief 僅顯示有無差異,不顯示詳細的資訊。 -r或--recursive 比較子目錄中的檔案。 -s或--report-identical-files 若沒有發現任何差異,仍然顯示資訊。 -S或--starting-file 在比較目錄時,從指定的檔案開始比較。 -t或--expand-tabs 在輸出時,將tab字元展開。 -T或--initial-tab 在每行前面加上tab字元以便對齊。 -u,-U或--unified= 以合併的方式來顯示檔案內容的不同。 -v或--version 顯示版本資訊。 -w或--ignore-all-space 忽略全部的空格字元。 -W或--width 在使用-y引數時,指定欄寬。 -x或--exclude 不比較選項中所指定的檔案或目錄。 -X或--exclude-from 您可以將檔案或目錄型別存成文字檔案,然後在=中指定此文字檔案。 -y或--side-by-side 以並列的方式顯示檔案的異同之處。 --help 顯示幫助。 --left-column 在使用-y引數時,若兩個檔案某一行內容相同,則僅在左側的欄位顯示該行內容。 --suppress-common-lines 在使用-y引數時,僅顯示不同之處。 |
4.使用例項:
例項1:比較兩個檔案
命令:
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[root@localhost test3]# diff log2014.log log2013.log 3c3 < 2014-03 --- > 2013-03 8c8 < 2013-07 --- > 2013-08 11,12d10 < 2013-11 < 2013-12 |
說明:
上面的“3c3”和“8c8”表示log2014.log和log20143log檔案在3行和第8行內容有所不同;”11,12d10″表示第一個檔案比第二個檔案多了第11和12行。
diff 的normal 顯示格式有三種提示:
1 2 3 4 5 |
a - add c - change d - delete |
例項2:並排格式輸出
命令:
1 |
diff log2013.log log2014.log -y -W 50 |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[root@localhost test3]# diff log2014.log log2013.log -y -W 50 2013-01 2013-01 2013-02 2013-02 2014-03 | 2013-03 2013-04 2013-04 2013-05 2013-05 2013-06 2013-06 2013-07 2013-07 2013-07 | 2013-08 2013-09 2013-09 2013-10 2013-10 2013-11 < 2013-12 < [root@localhost test3]# diff log2013.log log2014.log -y -W 50 2013-01 2013-01 2013-02 2013-02 2013-03 | 2014-03 2013-04 2013-04 2013-05 2013-05 2013-06 2013-06 2013-07 2013-07 2013-08 | 2013-07 2013-09 2013-09 2013-10 2013-10 > 2013-11 > 2013-12 |
說明:
1 2 3 4 5 |
“|”表示前後2個檔案內容有不同 “<”表示後面檔案比前面檔案少了1行內容 “>”表示後面檔案比前面檔案多了1行內容 |
例項3:上下文輸出格式
命令:
1 |
diff log2013.log log2014.log -c |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
[root@localhost test3]# diff log2013.log log2014.log -c *** log2013.log 2012-12-07 16:36:26.000000000 +0800 --- log2014.log 2012-12-07 18:01:54.000000000 +0800 *************** *** 1,10 **** 2013-01 2013-02 ! 2013-03 2013-04 2013-05 2013-06 2013-07 ! 2013-08 2013-09 2013-10 --- 1,12 ---- 2013-01 2013-02 ! 2014-03 2013-04 2013-05 2013-06 2013-07 ! 2013-07 2013-09 2013-10 + 2013-11 + 2013-12[root@localhost test3]# diff log2014.log log2013.log -c *** log2014.log 2012-12-07 18:01:54.000000000 +0800 --- log2013.log 2012-12-07 16:36:26.000000000 +0800 *************** *** 1,12 **** 2013-01 2013-02 ! 2014-03 2013-04 2013-05 2013-06 2013-07 ! 2013-07 2013-09 2013-10 - 2013-11 - 2013-12 --- 1,10 ---- 2013-01 2013-02 ! 2013-03 2013-04 2013-05 2013-06 2013-07 ! 2013-08 2013-09 2013-10[root@localhost test3]# |
說明:
這種方式在開頭兩行作了比較檔案的說明,這裡有三中特殊字元:
1 2 3 4 5 |
“+” 比較的檔案的後者比前著多一行 “-” 比較的檔案的後者比前著少一行 “!” 比較的檔案兩者有差別的行 |
例項4:統一格式輸出
命令:
1 |
diff log2014.log log2013.log -u |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
[root@localhost test3]# diff log2014.log log2013.log -u --- log2014.log 2012-12-07 18:01:54.000000000 +0800 +++ log2013.log 2012-12-07 16:36:26.000000000 +0800 @@ -1,12 +1,10 @@ 2013-01 2013-02 -2014-03 +2013-03 2013-04 2013-05 2013-06 2013-07 -2013-07 +2013-08 2013-09 2013-10 -2013-11 -2013-12 |
說明:
它的第一部分,也是檔案的基本資訊:
1 2 3 |
--- log2014.log 2012-12-07 18:01:54.000000000 +0800 +++ log2013.log 2012-12-07 16:36:26.000000000 +0800 |
“—“表示變動前的檔案,”+++”表示變動後的檔案。
第二部分,變動的位置用兩個@作為起首和結束。
1 |
@@ -1,12 +1,10 @@ |
前面的”-1,12″分成三個部分:減號表示第一個檔案(即log2014.log),”1″表示第1行,”12″表示連續12行。合在一起,就表示下面是第一個檔案從第1行開始的連續12行。同樣的,”+1,10″表示變動後,成為第二個檔案從第1行開始的連續10行。
例項5:比較資料夾不同
命令:
1 |
diff test3 test6 |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
[root@localhost test]# diff test3 test6 Only in test6: linklog.log Only in test6: log2012.log diff test3/log2013.log test6/log2013.log 1,10c1,3 < 2013-01 < 2013-02 < 2013-03 < 2013-04 < 2013-05 < 2013-06 < 2013-07 < 2013-08 < 2013-09 < 2013-10 --- > hostnamebaidu=baidu.com > hostnamesina=sina.com > hostnames=true diff test3/log2014.log test6/log2014.log 1,12d0 < 2013-01 < 2013-02 < 2014-03 < 2013-04 < 2013-05 < 2013-06 < 2013-07 < 2013-07 < 2013-09 < 2013-10 < 2013-11 < 2013-12 Only in test6: log2015.log Only in test6: log2016.log Only in test6: log2017.log [root@localhost test]# |
說明:
例項6:比較兩個檔案不同,並生產補丁
命令:
1 |
diff -ruN log2013.log log2014.log >patch.log |
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[root@localhost test3]# diff -ruN log2013.log log2014.log >patch.log [root@localhost test3]# ll 總計 12 -rw-r--r-- 2 root root 80 12-07 16:36 log2013.log -rw-r--r-- 1 root root 96 12-07 18:01 log2014.log -rw-r--r-- 1 root root 248 12-07 21:33 patch.log [root@localhost test3]# cat patc.log cat: patc.log: 沒有那個檔案或目錄 [root@localhost test3]# cat patch.log --- log2013.log 2012-12-07 16:36:26.000000000 +0800 +++ log2014.log 2012-12-07 18:01:54.000000000 +0800 @@ -1,10 +1,12 @@ 2013-01 2013-02 -2013-03 +2014-03 2013-04 2013-05 2013-06 2013-07 -2013-08 +2013-07 2013-09 2013-10 +2013-11 +2013-12[root@localhost test3]# |
說明:
例項7:打補丁
命令:
輸出:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[root@localhost test3]# cat log2013.log 2013-01 2013-02 2013-03 2013-04 2013-05 2013-06 2013-07 2013-08 2013-09 2013-10[root@localhost test3]# patch log2013.log patch.log patching file log2013.log [root@localhost test3]# [root@localhost test3]# cat log2013.log 2013-01 2013-02 2014-03 2013-04 2013-05 2013-06 2013-07 2013-07 2013-09 2013-10 2013-11 2013-12[root@localhost test3]# |
說明:
本系列文章:
每天一個 Linux 命令(1):ls命令
每天一個 Linux 命令(2):cd命令
每天一個 Linux 命令(3):pwd命令
每天一個 Linux 命令(4):mkdir命令
每天一個 Linux 命令(5):rm 命令
每天一個 Linux 命令(6):rmdir 命令
每天一個 Linux 命令(7):mv命令
每天一個 Linux 命令(8):cp 命令
每天一個 Linux 命令(9):touch 命令
每天一個 Linux 命令(10):cat 命令
每天一個 Linux 命令(11):nl 命令
每天一個 Linux 命令(12):more 命令
每天一個 Linux 命令(13):less 命令
每天一個 Linux 命令(14):head 命令
每天一個 Linux 命令(15):tail 命令
每天一個 Linux 命令(16):which命令
每天一個 Linux 命令(17):whereis 命令
每天一個 Linux 命令(18):locate 命令
每天一個 Linux 命令(19):find 命令概覽
每天一個 Linux 命令(20):find命令之exec
每天一個 Linux 命令(21):find命令之xargs
每天一個 Linux 命令(22):find 命令的引數詳解
每天一個 Linux 命令(23):Linux 目錄結構
每天一個 Linux 命令(24):Linux 檔案型別與副檔名
每天一個 Linux 命令(25):Linux 檔案屬性詳解
每天一個 Linux 命令(26):用 SecureCRT 來上傳和下載檔案
每天一個 Linux 命令(27):linux chmod 命令
每天一個 Linux 命令(28):tar 命令
每天一個 Linux 命令(29): chgrp 命令
每天一個 Linux 命令(30): chown 命令
每天一個 Linux 命令(31): /etc/group 檔案詳解
每天一個 Linux 命令(32):gzip 命令
每天一個 Linux 命令(33):df 命令
每天一個 Linux 命令(34): du 命令
每天一個 Linux 命令(35): ln 命令