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

I have a file looks like:

2011-03-21 name001 line1
2011-03-21 name002 line2
2011-03-21 name003 line3
2011-03-22 name002 line4
2011-03-22 name001 line5

for each name, i only want its last appearance. So, i expect the result to be:

2011-03-21 name003 line3
2011-03-22 name002 line4
2011-03-22 name001 line5

Could someone give me a solution with bash/awk/sed/....?

share|improve this question

4 Answers

up vote 13 down vote accepted

This code get uniq lines by second field but from the end of file or text (like in your result example)

tac temp.txt | sort -k2,2 -r -u
share|improve this answer
That's an elegant solution! – Martin Mar 25 '11 at 9:43
very nice :) thanks – Todd Mar 25 '11 at 12:59
Wish tac was on OSX. – Etienne Low-Décarie May 2 at 12:57
awk '{a[$2]=$0} END {for (i in a) print a[i]}' file

If order of appearance is important:

  • Based on first appearance:

    awk '!a[$2] {b[++i]=$2} {a[$2]=$0} END {for (i in b) print a[b[i]]}' file
    
  • Based on last appearance:

    tac file | awk '!a[$2] {b[++i]=$2} {a[$2]=$0} END {for (i in b) print a[b[i]]}'
    
share|improve this answer
This is good - simple and robust. The order of the output does not match the order of the output if that is important though. Is there an easy way to fix that? – Paul Mar 25 '11 at 8:11
@Paul yes, but this will result in a much more complex awk program. I'll edit my answer. – pepoluan Mar 25 '11 at 8:12
Actually, I was meaning just reversing the printing of the array rather than which entry was selected. So that the output would be in time order: line 3, line 4, line 5 rather than line 5, line 4, line 3. +1 from me for the first simple answer. Oh wait, yeah - I see that is what you were doing - it does get stupidly complex. – Paul Mar 25 '11 at 8:24
@Paul oh, I misunderstood :) ... well, you can always pipe its output to sort. would be much simpler than trying to cram everything in awk. – pepoluan Mar 25 '11 at 8:26
I used the simplest one, and add sort on time stamp field after that. Really a good solution, thanks! – Todd Mar 25 '11 at 10:19
sort < bar > foo
uniq  < foo > bar

bar now has no duplicated lines

share|improve this answer
Given the OP's example, all the lines would be counted as unique. He only wants the second field to be used to determine uniqueness. – gdw2 Mar 1 '12 at 15:13

EDIT: Here's a version that actually answers the question.

sort -k 2 filename | while read f1 f2 f3; do if [ ! "$f2" = "$lf2" ]; then echo "$f1 $f2 $f3"; lf2="$f2"; fi; done
share|improve this answer

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.