Find unique lines

后端 未结 11 1831
情书的邮戳
情书的邮戳 2020-12-23 10:46

How can I find the unique lines and remove all duplicates from a file? My input file is

1
1
2
3
5
5
7
7

I would like the result to be:

11条回答
  •  甜味超标
    2020-12-23 11:21

    You could also print out the unique value in "file" using the cat command by piping to sort and uniq

    cat file | sort | uniq -u

提交回复
热议问题