Hacker News new | ask | show | jobs
by iigs 5970 days ago
That looks like it was a sample line that wasn't particularly useful, but if you do:

cat file.txt | sort | uniq | wc -l ## notice uniq

it gives you the count of unique lines. If you omit the sort in that instance it will fold duplicates together a/b/a is three lines, not two.

1 comments

Instead of "sort | uniq" you could just use "sort -u"