uniq: add sorting example (#945)
This involves another command, but it's such a natural extension of uniq's `-c` functionality that I feel it's warranted to show here. We should probably add a sort to the -c example too, because uniq only deals with *sequential* line repetitions.
This commit is contained in:

committed by
Leandro Ostera

parent
f080073fad
commit
fd5fb3562d
@@ -17,3 +17,7 @@
|
||||
- Display number of occurences of each line along with that line:
|
||||
|
||||
`uniq -c {{file}}`
|
||||
|
||||
- Display number of occurences of each line, sorted by the most frequent:
|
||||
|
||||
`uniq -c {{file}} | sort -nr`
|
||||
|
Reference in New Issue
Block a user