Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My data as /tmp/1

9367543
9105616
9108177
8948074
8860323
9170406
9105616

I run and I get nothing

cat /tmp/1 | uniq -d

This is strange, since uniq -d should

-d      Only output lines that are repeated in the input.

How can you use uniq -d?

share|improve this question
Thank you for your answers! – Masi Jul 25 '09 at 12:09

3 Answers

up vote 5 down vote accepted

You have to sort your data before you use uniq. It only removes/detects duplicates on adjacent lines.

share|improve this answer
Or use an awk script to do the job properly? – Douglas Leeder Jul 25 '09 at 11:49
Thank you for pointing that out! --- It even says in the manual The uniq utility reads the specified input_file comparing adjacent lines - -. – Masi Jul 25 '09 at 12:06
With my GNU coreutils uniq the manual says: Discard all but one of successive identical lines from INPUT (or standard input), writing to OUTPUT (or standard output). – Sean A.O. Harney Jul 25 '09 at 14:52

Try this to double check, it will output any lines which are duplicated:

  cat /tmp/1 |  awk 'seen[$0]++ == 1'

Oh, this is your problem:

 cat /tmp/1 | sort | uniq -d

Sort it before running uniq!

share|improve this answer
2  
no need to use cat. – ghostdog74 Jul 25 '09 at 11:34
Lines 2 and 7 of Masi's sample file are the same. But they're not on consecutive lines, which appears to be the heart of the misunderstanding. – dave Jul 25 '09 at 11:35
ghostdog, well I am using cat because the OP did also. Yes I am aware I could use shell redirection instead, or give as a command line arg to awk or sort. dave, thanks. Didn't see that one! edited. – Sean A.O. Harney Jul 25 '09 at 11:54
awk '{_[$0]++}END{for(i in _)if(_[i]>1) print i}' /tmp/1

or just

awk '_[$0]++ == 1' file
share|improve this answer
awk '_[$0]++' only works if there is at most one duplicate for each line with duplicates. If you had three rows that were the same, it would print out twice. – Sean A.O. Harney Jul 25 '09 at 14:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.