From e0800c12292b66f7ae8b4ad195d3163c66316b29 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Sun, 16 Apr 2023 09:15:42 +0200 Subject: [PATCH] update --- scripts/check-dups.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-dups.sh b/scripts/check-dups.sh index f9957e3..c64c917 100755 --- a/scripts/check-dups.sh +++ b/scripts/check-dups.sh @@ -18,8 +18,8 @@ uniqlinks=$(cat $readme | egrep "\- \[" | uniq | wc -l) if [[ $links -eq $uniqlinks ]]; then - echo "NO DUPLICATES FOUND." + echo "[ OK! ] NO DUPLICATES FOUND." else - echo "DUPLICATES FOUND!" + echo "[ ERR ] DUPLICATES FOUND!" cat $readme | egrep "\- \[" | uniq -c | egrep -iv "1 - [" fi \ No newline at end of file