uniq

英[juˈni:k]   美[juˈnik]  

adj.唯一的,僅有的;獨一無二的,獨特的;不平常的,特別的;超絕

Linux uniq指令 語法

作用:uniq指令用來檢查及刪除文字檔中重複出現的行列。

語法:uniq [-cdu][-f<欄位>][-s<字元位置>][-w<字元位置>][--help ][--version][輸入檔][輸出檔]

Linux uniq指令 範例

檔案testfile中第2 行、第5 行、第9 行為相同的行,使用uniq 指令刪除重複的行,可使用下列指令:

uniq testfile

testfile中的原有內容為:

$ cat testfile      #原有内容  
test 30  
test 30  
test 30  
Hello 95  
Hello 95  
Hello 95  
Hello 95  
Linux 85  
Linux 85

使用uniq 指令刪除重複的行後,有下列輸出結果:

$ uniq testfile     #删除重复行后的内容  
test 30  
Hello 95  
Linux 85

檢查檔案並刪除檔案中重複出現的行,並在行首顯示該行重複出現的次數。使用以下指令:

uniq-c testfile

結果輸出如下:

$ uniq-ctestfile      #删除重复行后的内容  
3 test 30             #前面的数字的意义为该行共出现了3次  
4 Hello 95            #前面的数字的意义为该行共出现了4次  
2 Linux 85            #前面的数字的意义为该行共出现了2次