From 353fe48d60df4a85e30cdf32ce73440a2732430d Mon Sep 17 00:00:00 2001 From: shigemk2 Date: Mon, 12 Jan 2015 21:17:55 +0900 Subject: [PATCH] Fix dc option --- cheat/cheatsheets/uniq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat/cheatsheets/uniq b/cheat/cheatsheets/uniq index 994b706..a2bcfc5 100644 --- a/cheat/cheatsheets/uniq +++ b/cheat/cheatsheets/uniq @@ -9,4 +9,4 @@ sort file | uniq -c # count not duplicated lines sort file | uniq -uc # count only duplicated lines -sort file | uniq -c +sort file | uniq -dc