Shell command Learning, sort,unique file simple sorting to remove duplicate records

Source: Internet
Author: User

Often encountered in the file has a duplicate record of the scene, either remove duplicate records, or count the number of duplicate records, these simple functions can be implemented through the Sort,uniq combination of shell commands,

For example, file A.txt record as follows

Test,test1,test2testtest1test2test,test1,test2abcdedfgabcdddddd

To remove duplicate rows:

Sort A.txt | Uniq
Abcddddddedfgtesttest,test1,test2test1test2

Find non-repeating rows

Sort A.txt | uniq -udddddedfgtesttest1test2

Find duplicate rows

Sort A.txt | uniq -dabcdtest,test1,test2

Statistics

Sort A.txt | Uniq -C      1      2  ABCD      1  ddddd      1  EDFG      1  test      2 test,test1,test2         1  test1      1 test2

Shell command Learning, sort,unique file simple sorting to remove duplicate records

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.