From the document said that the option --count going to
prefix lines by the number of occurrences
but after I do some test it seems doesn't work.
$ echo -e "a\na\b\nc" |uniq --count
1 a
1 a
1 c
Should the line 'a' occurs 2 times?