Hacker News new | ask | show | jobs
by wmu 2688 days ago
This is not the same. For sequence [5,5,4,3,3,2,1,1] "sort -u" returns [1,2,3,4,5], while "sort | uniq -u" returns [2,4].
1 comments

Huh, I didn't know that! Thanks.