diff --git a/cheat/cheatsheets/uniq b/cheat/cheatsheets/uniq index 18ee084..b9abd3d 100644 --- a/cheat/cheatsheets/uniq +++ b/cheat/cheatsheets/uniq @@ -1,13 +1,18 @@ # show all lines without duplication -# "sort -u" and "uniq" is the same effect. +# `sort -u` and `uniq` is the same effect. sort file | uniq + # show not duplicated lines sort file | uniq -u + # show duplicated lines only sort file | uniq -d + # count all lines sort file | uniq -c + # count not duplicated lines sort file | uniq -uc + # count only duplicated lines sort file | uniq -dc