top | item 45718121

(no title)

Aaron2222 | 4 months ago

  sort | uniq -c | sort -n
The second sort is sorting by frequency (the count output by `uniq -c`).

discuss

order

emmelaich|4 months ago

I often add `head` with `sort -rn` because I'm only interested in the largest.