Linux 命令大全
Linux uniq 命令用于檢查及刪除文本文件中重復(fù)出現(xiàn)的行列,一般與 sort 命令結(jié)合使用。
uniq 可檢查文本文件中重復(fù)出現(xiàn)的行列。
uniq [-cdu][-f<欄位>][-s<字符位置>][-w<字符位置>][--help][--version][輸入文件][輸出文件]
參數(shù):
文件testfile中第 2、3、5、6、7、9行為相同的行,使用 uniq 命令刪除重復(fù)的行,可使用以下命令:
uniq testfile
testfile中的原有內(nèi)容為:
$ cat testfile #原有內(nèi)容 test 30 test 30 test 30 Hello 95 Hello 95 Hello 95 Hello 95 Linux 85 Linux 85
使用uniq 命令刪除重復(fù)的行后,有如下輸出結(jié)果:
$ uniq testfile #刪除重復(fù)行后的內(nèi)容 test 30 Hello 95 Linux 85
檢查文件并刪除文件中重復(fù)出現(xiàn)的行,并在行首顯示該行重復(fù)出現(xiàn)的次數(shù)。使用如下命令:
uniq -c testfile
結(jié)果輸出如下:
$ uniq -c testfile #刪除重復(fù)行后的內(nèi)容 3 test 30 #前面的數(shù)字的意義為該行共出現(xiàn)了3次 4 Hello 95 #前面的數(shù)字的意義為該行共出現(xiàn)了4次 2 Linux 85 #前面的數(shù)字的意義為該行共出現(xiàn)了2次當(dāng)重復(fù)的行并不相鄰時(shí),uniq 命令是不起作用的linux命令,即若文件內(nèi)容為以下時(shí)linux命令,uniq 命令不起作用:
$ cat testfile1 # 原有內(nèi)容 test 30 Hello 95 Linux 85 test 30 Hello 95 Linux 85 test 30 Hello 95 Linux 85
這時(shí)我們就可以使用 sort:
$ sort testfile1 | uniq Hello 95 Linux 85 test 30
統(tǒng)計(jì)各行在文件中出現(xiàn)的次數(shù):
$ sort testfile1 | uniq -c 3 Hello 95 3 Linux 85 3 test 30
在文件中找出重復(fù)的行:
$ sort testfile1 | uniq -d Hello 95 Linux 85 test 30
Linux 命令大全
上一個(gè)教程:【linux登錄失敗記錄命令】
下一個(gè)教程:Linux系統(tǒng)命令及Shell腳本實(shí)踐指南