mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 16:18:00 +01:00
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:
parent
f080073fad
commit
fd5fb3562d
1 changed files with 4 additions and 0 deletions
|
@ -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`
|
||||
|
|
Loading…
Reference in a new issue