From 227ec01a258d10c92ddd00c25f917cb03337e850 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 1 Sep 2022 18:36:57 -0700 Subject: [PATCH] fix dumb typo --- sh/scount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/scount b/sh/scount index 958fa0f..1fe7ff9 100644 --- a/sh/scount +++ b/sh/scount @@ -5,7 +5,7 @@ # YES_ASH ### @ scount -### perform `sort | unic -c | sort -n`, preferring GNU awk when available. +### perform `sort | uniq -c | sort -n`, preferring GNU awk when available. if "$HOME/sh/witch" gawk >/dev/null 2>/dev/null; then scount() { @@ -15,7 +15,7 @@ if "$HOME/sh/witch" gawk >/dev/null 2>/dev/null; then else scount() { argc $# -le 1 scount || return - sort -- "$@" | unic -c | sort -n + sort -- "$@" | uniq -c | sort -n } fi