From 7ee53b749735021818c32b4ad0ebb60659048718 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 17 Feb 2020 19:31:19 +0100 Subject: [PATCH] scripts/generate-dict.sh: should not pass "-d" to "uniq". --- scripts/generate-dict.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-dict.sh b/scripts/generate-dict.sh index e0f2faf..934d19d 100755 --- a/scripts/generate-dict.sh +++ b/scripts/generate-dict.sh @@ -12,4 +12,4 @@ BASE58_ALPHABET=123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz LC_CTYPE=C awk "! /[^${BASE58_ALPHABET}]/" < /dev/stdin 2> /dev/null \ | sed -r '/^.{,2}$/d' \ | tr '[:upper:]' '[:lower:]' \ - | sort | uniq -d + | sort | uniq