linux比較檔案輸出不同的內容

來源:互聯網
上載者:User

linux比較檔案輸出不同的內容 目前據我所瞭解的有如下幾種方法,來比較兩個檔案的行,以輸出他們的不同之處: 1) comm mission:        comm [-123] file1 file2 [> sfile]        NOTE: file1,file2 must be firstly sorted !        -1/2/3 means: -1 ----- rid the only retained contents in file1                      -2 ----- rid the only retained contents in file2                      -3 ----- rid the communal lines in both two files         正如,上面說的那樣,comm命令運用的前提是針對兩個sorted檔案!       該命令是對兩個已經排好序的檔案進行比較。其中file1和file2是已排序的檔案。comm讀取這兩個檔案,然後產生三列輸出:僅在file1中出現的行;僅在file2中出現的行;在兩個檔案中都存在的行。如果檔案名稱用“- ”,則表示從標準輸入讀取。   選項1、2或3抑制相應的列顯示。例如comm - 12就只顯示在兩個檔案中都存在的行;comm - 23隻顯示在第一個檔案中出現而未在第二個檔案中出現的行;comm - 123則什麼也不顯示。 2) grep mission:        grep -v -f file1 file2   /*註::此法在對比數字時候比較湊效果,文本對比不建議使用*/ 3)   awk mission:         awk '{print NR,$0}' file1 file2 |sort -k2|uniq -u -f 1|sort -k1|awk '{print $2}'   或者:   awk '{print $0}' file1 file2 |sort|uniq -u 4)    diff mission:         diff [-opt] file1 file2

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.